Home
last modified time | relevance | path

Searched refs:json_decode (Results 1 – 25 of 39) sorted by relevance

12

/PHP-7.4/ext/json/tests/
H A D001.phpt2 json_decode() tests
8 var_dump(json_decode());
9 var_dump(json_decode(""));
10 var_dump(json_decode("", 1));
11 var_dump(json_decode("", 0));
12 var_dump(json_decode(".", 1));
13 var_dump(json_decode(".", 0));
14 var_dump(json_decode("<?>"));
15 var_dump(json_decode(";"));
17 var_dump(json_decode("blah"));
[all …]
H A Djson_decode_error.phpt2 Test json_decode() function : error conditions
7 echo "*** Testing json_decode() : error conditions ***\n";
9 echo "\n-- Testing json_decode() function with no arguments --\n";
10 var_dump(json_decode());
14 var_dump(json_decode('"abc"', true, 512, 0, $extra_arg));
16 echo "\n-- Testing json_decode() function with depth below 0 --\n";
17 var_dump(json_decode('"abc"', true, -1));
22 *** Testing json_decode() : error conditions ***
24 -- Testing json_decode() function with no arguments --
34 -- Testing json_decode() function with depth below 0 --
[all …]
H A Dbug69187.phpt7 var_dump(json_decode(NULL));
9 var_dump(json_decode(FALSE));
11 var_dump(json_decode(""));
14 var_dump(json_decode(0));
16 var_dump(json_decode(1));
18 var_dump(json_decode(TRUE));
21 json_decode("\xED\xA0\xB4");
24 json_decode("\x00");
27 json_decode("\"\xED\xA0\xB4\"");
30 json_decode("\"\x00\"");
H A Dbug42090.phpt2 Bug #42090 (json_decode causes segmentation fault)
8 json_decode('""'),
9 json_decode('"..".'),
10 json_decode('"'),
11 json_decode('""""'),
13 json_decode(json_encode('"')),
14 json_decode(json_encode('""'))
H A Dbug54484.phpt2 Bug #54484 (Empty string in json_decode doesn't reset json_last_error)
7 json_decode('{"test":"test"}');
10 json_decode("");
13 json_decode("invalid json");
16 json_decode("\"\001 invalid json\"");
19 json_decode("");
H A Dbug41403.phpt2 Bug #41403 (json_decode cannot decode floats if localeconv decimal_point is not '.')
16 var_dump(json_decode('[2.1]'));
17 var_dump(json_decode('[0.15]'));
18 var_dump(json_decode('[123.13452345]'));
19 var_dump(json_decode('[123,13452345]'));
H A Dbug50224.phpt19 var_dump(json_decode(json_encode(12.3, JSON_PRESERVE_ZERO_FRACTION)));
20 var_dump(json_decode(json_encode(12, JSON_PRESERVE_ZERO_FRACTION)));
21 var_dump(json_decode(json_encode(12.0, JSON_PRESERVE_ZERO_FRACTION)));
22 var_dump(json_decode(json_encode(0.0, JSON_PRESERVE_ZERO_FRACTION)));
23 var_dump(json_decode(json_encode(array(12, 12.0, 12.3), JSON_PRESERVE_ZERO_FRACTION)));
24 var_dump(json_decode(json_encode((object)array('float' => 12.0, 'integer' => 12), JSON_PRESERVE_ZER…
25 var_dump(json_decode(json_encode((object)array('float' => 12.0, 'integer' => 12), JSON_PRESERVE_ZER…
H A D007.phpt7 var_dump(json_decode("[1]"));
9 var_dump(json_decode("[[1]]", false, 2));
11 var_dump(json_decode("[1}"));
13 var_dump(json_decode('["' . chr(0) . 'abcd"]'));
15 var_dump(json_decode("[1"));
H A Dbug41504.phpt2 Bug #41504 (json_decode() converts empty array keys to "_empty_")
8 var_dump(json_decode('{"":"value"}', true));
9 var_dump(json_decode('{"":"value", "key":"value"}', true));
10 var_dump(json_decode('{"key":"value", "":"value"}', true));
H A Dbug73991.phpt10 var_dump(json_decode($json, false));
11 var_dump(json_decode($json, true));
12 var_dump(json_decode($json, null, 512, 0));
13 var_dump(json_decode($json, null, 512, JSON_OBJECT_AS_ARRAY));
H A D008.phpt2 json_decode() with large integers
8 $x = json_decode($json);
10 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
H A Djson_decode_invalid_utf8.phpt2 json_decode() invalid UTF8
10 var_dump(json_decode($str));
11 var_dump(json_decode($str, true, 512, JSON_INVALID_UTF8_IGNORE));
12 $json = json_decode($str, true, 512, JSON_INVALID_UTF8_SUBSTITUTE);
H A Dbug72787.phpt2 Bug #72787 (json_decode reads out of bounds)
9 var_dump(json_decode('[]', false, 0x100000000));
13 Warning: json_decode(): Depth must be lower than %d in %s on line %d
H A Dbug68546.phpt2 Bug #68546 (json_decode() Fatal error: Cannot access property started with '\0')
11 var_dump(json_decode('{"key": {"\u0000": "aa"}}'));
13 var_dump(json_decode('[{"key1": 0, "\u0000": 1}]'));
H A Dbug63737.phpt2 Bug #63737 (json_decode does not properly decode with options parameter)
8 $x = json_decode($json);
10 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
H A Djson_decode_basic.phpt2 Test json_decode() function : basic functionality
7 echo "*** Testing json_decode() : basic functionality ***\n";
32 // loop through with each element of the $inputs array to test json_decode() function
36 var_dump(json_decode($input));
37 var_dump(json_decode($input, true));
44 *** Testing json_decode() : basic functionality ***
H A Djson_decode_exceptions.phpt2 Test json_decode() function : JSON_THROW_ON_ERROR flag
9 var_dump(json_decode("{", false, 512, JSON_THROW_ON_ERROR));
36 string(11) "json_decode"
H A Dbug68938.phpt2 Bug #68938 (json_decode() decodes empty string without indicating error)
7 json_decode("");
H A Dbug45791.phpt2 Bug #45791 (json_decode() does not handle number 0e0)
8 var_dump(json_decode('{"zero": 0e0}'));
H A Dbug62010.phpt2 Bug #62010 (json_decode produces invalid byte-sequences)
8 var_dump(json_decode('"\ud834"'));
H A Djson_exceptions_error_clearing.phpt12 json_decode("\xFF");
17 json_decode("", false, 512, JSON_THROW_ON_ERROR);
25 json_decode("{", false, 512, JSON_THROW_ON_ERROR);
H A Djson_encode_pretty_print.phpt8 $struct = json_decode($json);
11 $pretty = json_decode($pretty);
H A Dbug72069.phpt8 $result = json_encode(['end' => json_decode(null, true)]);
15 return ['end' => json_decode(null, true)];
H A Dpass002.phpt11 $obj = json_decode($test);
14 $arr = json_decode($test, true);
25 $obj = json_decode($obj_enc);
28 $arr = json_decode($arr_enc, true);
H A Dbug64874_part2.phpt2 Case-sensitivity part of bug #64874 ("json_decode handles whitespace and case-sensitivity incorrect…
8 var_dump(json_decode($json));

Completed in 43 milliseconds

12