php-src/ext/json/tests/bug55543.phpt
2020-05-28 15:07:47 -04:00

12 lines
221 B
PHP

--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}"