blob: 93306a58b39d64c215f1eb9b52cdec3dbb1d081b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--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
|