DIR:/opt/remi/php56/root/usr/share/tests/pecl/json/tests/ |
Current File : //opt/remi/php56/root/usr/share/tests/pecl/json/tests/bug55543.phpt |
--TEST-- Bug #55543 (json_encode() with JSON_NUMERIC_CHECK & numeric string properties) --SKIPIF-- <?php if (!extension_loaded("json")) print "skip"; ?> --FILE-- <?php $a = new stdClass; $a->{"1"} = "5"; var_dump(json_encode($a, JSON_NUMERIC_CHECK)); ?> --EXPECT-- string(7) "{"1":5}" |