mirror of
https://github.com/php/php-src.git
synced 2025-01-08 12:04:24 +08:00
32a1ebbd43
These are no longer needed after https://wiki.php.net/rfc/always_enable_json Closes GH-5637
11 lines
205 B
PHP
11 lines
205 B
PHP
--TEST--
|
|
Bug #68567 JSON_PARTIAL_OUTPUT_ON_ERROR can result in JSON with null key
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(json_encode(array("\x80" => 1), JSON_PARTIAL_OUTPUT_ON_ERROR));
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(6) "{"":1}"
|