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
10 lines
164 B
PHP
10 lines
164 B
PHP
--TEST--
|
|
Bug #68938 (json_decode() decodes empty string without indicating error)
|
|
--FILE--
|
|
<?php
|
|
json_decode("");
|
|
var_dump(json_last_error());
|
|
?>
|
|
--EXPECT--
|
|
int(4)
|