blob: 536723775ece5a4584a836e88a62e83bf3410887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--TEST--
Bug #55543 (json_encode() with JSON_NUMERIC_CHECK & numeric string properties)
--FILE--
<?php
$a = new stdClass;
$a->{"1"} = "5";
var_dump(json_encode($a, JSON_NUMERIC_CHECK));
?>
--EXPECT--
string(7) "{"1":5}"
|