Home
last modified time | relevance | path

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

12

/php-src/.github/
H A Dnightly_matrix.php18 …$branch_commit_map = json_decode(file_get_contents($branch_commit_cache_file), JSON_THROW_ON_ERROR…
/php-src/build/
H A Dgen_stub.php4096 $json = json_decode($json, true);
/php-src/ext/json/
H A Djson_arginfo.h33 ZEND_FUNCTION(json_decode);
40 ZEND_FE(json_decode, arginfo_json_decode)
H A Djson.c260 PHP_FUNCTION(json_decode) in PHP_FUNCTION() argument
H A Djson.stub.php157 function json_decode(string $json, ?bool $associative = null, int $depth = 512, int $flags = 0): mi… function
/php-src/sapi/fpm/tests/
H A Dresponse.inc163 $data = json_decode($rawData, true);
/php-src/ext/pdo_pgsql/tests/
H A Dbug66584.phpt34 …run($pdo, json_decode('{"0":234,"1":165,"2":221,"3":207,"4":188,"5":216,"6":1150,"7":916,"8":967,"…
/php-src/benchmark/
H A Dgenerate_diff.php21 $headSummary = json_decode(file_get_contents($headSummaryFile), true);
22 $baseSummary = json_decode(file_get_contents($baseSummaryFile), true);
/php-src/ext/json/tests/
H A Djson_validate_005.phpt2 json_validate() - compare against json_decode() for different types of inputs
22 var_dump($input, json_decode($input), json_validate($input));
H A D001.phpt2 json_decode() tests
6 var_dump(json_decode(""));
7 var_dump(json_decode("", 1));
8 var_dump(json_decode("", 0));
9 var_dump(json_decode(".", 1));
10 var_dump(json_decode(".", 0));
11 var_dump(json_decode("<?>"));
12 var_dump(json_decode(";"));
13 var_dump(json_decode("руссиш"));
14 var_dump(json_decode("blah"));
[all …]
H A D007.phpt5 var_dump(json_decode("[1]"));
7 var_dump(json_decode("[[1]]", false, 2));
9 var_dump(json_decode("[1}"));
11 var_dump(json_decode('["' . chr(0) . 'abcd"]'));
13 var_dump(json_decode("[1"));
H A D008.phpt2 json_decode() with large integers
6 $x = json_decode($json);
8 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
H A Dbug41067.phpt11 $json_decoded = json_decode($json, true);
H A Dbug41403.phpt2 Bug #41403 (json_decode cannot decode floats if localeconv decimal_point is not '.')
15 var_dump(json_decode('[2.1]'));
16 var_dump(json_decode('[0.15]'));
17 var_dump(json_decode('[123.13452345]'));
18 var_dump(json_decode('[123,13452345]'));
H A Dbug41504.phpt2 Bug #41504 (json_decode() converts empty array keys to "_empty_")
6 var_dump(json_decode('{"":"value"}', true));
7 var_dump(json_decode('{"":"value", "key":"value"}', true));
8 var_dump(json_decode('{"key":"value", "":"value"}', true));
H A Dbug41567.phpt9 var_dump(json_decode($a));
H A Dbug42090.phpt2 Bug #42090 (json_decode causes segmentation fault)
6 json_decode('""'),
7 json_decode('"..".'),
8 json_decode('"'),
9 json_decode('""""'),
11 json_decode(json_encode('"')),
12 json_decode(json_encode('""'))
H A Dbug47644.phpt11 var_dump(json_decode("[$i]"));
H A Dbug50224.phpt17 var_dump(json_decode(json_encode(12.3, JSON_PRESERVE_ZERO_FRACTION)));
18 var_dump(json_decode(json_encode(12, JSON_PRESERVE_ZERO_FRACTION)));
19 var_dump(json_decode(json_encode(12.0, JSON_PRESERVE_ZERO_FRACTION)));
20 var_dump(json_decode(json_encode(0.0, JSON_PRESERVE_ZERO_FRACTION)));
21 var_dump(json_decode(json_encode(array(12, 12.0, 12.3), JSON_PRESERVE_ZERO_FRACTION)));
22 var_dump(json_decode(json_encode((object)array('float' => 12.0, 'integer' => 12), JSON_PRESERVE_ZER…
23 var_dump(json_decode(json_encode((object)array('float' => 12.0, 'integer' => 12), JSON_PRESERVE_ZER…
H A Dbug54484.phpt2 Bug #54484 (Empty string in json_decode doesn't reset json_last_error)
5 json_decode('{"test":"test"}');
8 json_decode("");
11 json_decode("invalid json");
14 json_decode("\"\001 invalid json\"");
17 json_decode("");
H A Dbug68546.phpt2 Bug #68546 (json_decode() Fatal error: Cannot access property started with '\0')
6 var_dump(json_decode('{"key": {"\u0000": "aa"}}'));
8 var_dump(json_decode('[{"key1": 0, "\u0000": 1}]'));
H A Dbug72069.phpt6 $result = json_encode(['end' => json_decode('', true)]);
13 return ['end' => json_decode('', true)];
H A Dfail001.phpt36 var_dump(json_decode($test));
38 var_dump(json_decode($test, true));
H A Djson_decode_basic.phpt2 Test json_decode() function : basic functionality
5 echo "*** Testing json_decode() : basic functionality ***\n";
30 // loop through with each element of the $inputs array to test json_decode() function
34 var_dump(json_decode($input));
35 var_dump(json_decode($input, true));
41 *** Testing json_decode() : basic functionality ***
/php-src/ext/pcre/tests/
H A Dbug79241.phpt6 // if "’" string is used directly without json_decode,
8 $text = json_decode('"’"');

Completed in 52 milliseconds

12