1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/json/tests/bug41034.phpt
2020-05-28 15:07:47 -04:00

11 lines
245 B
PHP

--TEST--
Bug #41034 (json_encode() ignores null byte started keys in arrays)
--FILE--
<?php
echo json_encode(array(0, "\0ab"=>1, "\0null-prefixed value"));
echo "\nDone\n";
?>
--EXPECT--
{"0":0,"\u0000ab":1,"1":"\u0000null-prefixed value"}
Done