Home
last modified time | relevance | path

Searched refs:json_decode (Results 1 – 25 of 38) sorted by last modified time

12

/PHP-7.2/
H A DNEWS1502 json_encode and json_decode to ignore or replace invalid UTF-8 byte
1504 . Fixed bug #75185 (Buffer overflow in json_decode() with
H A DUPGRADING56 . The json_decode() option JSON_OBJECT_AS_ARRAY is used if the second
136 json_encode() and json_decode() to ignore and replace invalid UTF-8 byte
/PHP-7.2/ext/pdo_pgsql/tests/
H A Dbug66584.phpt33 …run($pdo, json_decode('{"0":234,"1":165,"2":221,"3":207,"4":188,"5":216,"6":1150,"7":916,"8":967,"…
/PHP-7.2/ext/json/tests/
H A Dbug62010.phpt2 Bug #62010 (json_decode produces invalid byte-sequences)
8 var_dump(json_decode('"\ud834"'));
H A Dbug73991.phpt8 var_dump(json_decode($json, false));
9 var_dump(json_decode($json, true));
10 var_dump(json_decode($json, null, 512, 0));
11 var_dump(json_decode($json, null, 512, JSON_OBJECT_AS_ARRAY));
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());
12 echo "\n-- Testing json_decode() function with more than expected no. of arguments --\n";
14 var_dump(json_decode('"abc"', true, 512, 0, $extra_arg));
19 *** Testing json_decode() : error conditions ***
21 -- Testing json_decode() function with no arguments --
23 Warning: json_decode() expects at least 1 parameter, 0 given in %s on line %d
26 -- Testing json_decode() function with more than expected no. of arguments --
[all …]
H A Dpass001.1.phpt84 $obj = json_decode($test);
87 $arr = json_decode($test, true);
98 $obj = json_decode($obj_enc);
101 $arr = json_decode($arr_enc, true);
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 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 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 Dbug68817.phpt8 var_dump(json_decode('[""]'));
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_encode_unescaped_slashes.phpt2 json_decode() tests
H A Dpass001.1_64bit.phpt84 $obj = json_decode($test);
87 $arr = json_decode($test, true);
98 $obj = json_decode($obj_enc);
101 $arr = json_decode($arr_enc, true);
H A Djson_encode_pretty_print.phpt8 $struct = json_decode($json);
11 $pretty = json_decode($pretty);
H A Dpass001.phpt73 $obj = json_decode($test);
76 $arr = json_decode($test, true);
87 $obj = json_decode($obj_enc);
90 $arr = json_decode($arr_enc, 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 Dpass003.phpt19 $obj = json_decode($test);
22 $arr = json_decode($test, true);
33 $obj = json_decode($obj_enc);
36 $arr = json_decode($arr_enc, true);
H A Dbug41067.phpt13 $json_decoded = json_decode($json, true);
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 Dbug41567.phpt11 var_dump(json_decode($a));
H A Dbug45791.phpt2 Bug #45791 (json_decode() does not handle number 0e0)
8 var_dump(json_decode('{"zero": 0e0}'));
H A Dbug47644.phpt12 var_dump(json_decode("[$i]"));
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…
/PHP-7.2/ext/json/
H A Djson.c36 static PHP_FUNCTION(json_decode);
68 PHP_FE(json_decode, arginfo_json_decode)
263 static PHP_FUNCTION(json_decode) in PHP_FUNCTION() argument

Completed in 62 milliseconds

12