mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
These are no longer needed after https://wiki.php.net/rfc/always_enable_json Closes GH-5637
14 lines
143 B
PHP
14 lines
143 B
PHP
--TEST--
|
|
Bug #68817 (Null pointer deference)
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(json_decode('[""]'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[0]=>
|
|
string(0) ""
|
|
}
|