mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00

These are no longer needed after https://wiki.php.net/rfc/always_enable_json Closes GH-5637
20 lines
499 B
PHP
20 lines
499 B
PHP
--TEST--
|
|
Test json_decode() function : error conditions
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing json_decode() : error conditions ***\n";
|
|
|
|
echo "\n-- Testing json_decode() function with depth below 0 --\n";
|
|
|
|
try {
|
|
var_dump(json_decode('"abc"', true, -1));
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . \PHP_EOL;
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
*** Testing json_decode() : error conditions ***
|
|
|
|
-- Testing json_decode() function with depth below 0 --
|
|
json_decode(): Argument #3 ($depth) must be greater than 0
|