Home
last modified time | relevance | path

Searched refs:json (Results 1 – 25 of 43) sorted by relevance

12

/PHP-8.0/ext/json/
H A DMakefile.frag.w321 ext\json\json_scanner.c: ext\json\json_scanner.re
2 …$(RE2C) $(RE2C_FLAGS) -t ext/json/php_json_scanner_defs.h --no-generation-date -bci -o ext/json/js…
4 ext\json\json_parser.tab.c: ext\json\json_parser.y
5 $(BISON) --defines -l ext/json/json_parser.y -o ext/json/json_parser.tab.c
H A Dconfig.w323 EXTENSION('json', 'json.c', false /* never shared */, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
5 ADD_SOURCES(configure_module_dirname, "json_encoder.c json_parser.tab.c json_scanner.c", "json");
9 PHP_INSTALL_HEADERS("ext/json/", "php_json.h php_json_parser.h php_json_scanner.h");
H A Djson.c33 static PHP_MINFO_FUNCTION(json);
45 static PHP_MINIT_FUNCTION(json)
96 static PHP_GINIT_FUNCTION(json) in PHP_GINIT_FUNCTION() argument
107 static PHP_RINIT_FUNCTION(json) in PHP_RINIT_FUNCTION() argument
118 PHP_MINIT(json),
120 PHP_RINIT(json),
122 PHP_MINFO(json),
124 PHP_MODULE_GLOBALS(json),
125 PHP_GINIT(json),
136 ZEND_GET_MODULE(json) in ZEND_GET_MODULE() argument
[all …]
H A Dconfig.m44 PHP_NEW_EXTENSION(json,
5 json.c \
10 PHP_INSTALL_HEADERS([ext/json], [php_json.h php_json_parser.h php_json_scanner.h])
H A Dphp_json.h86 ZEND_BEGIN_MODULE_GLOBALS(json)
90 ZEND_END_MODULE_GLOBALS(json)
92 PHP_JSON_API ZEND_EXTERN_MODULE_GLOBALS(json)
93 #define JSON_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(json, v)
H A Djson.stub.php7 function json_decode(string $json, ?bool $associative = null, int $depth = 512, int $flags = 0): mi… argument
H A Djson_arginfo.h11 ZEND_ARG_TYPE_INFO(0, json, IS_STRING, 0)
/PHP-8.0/ext/json/tests/
H A Dbug73991.phpt6 $json = '{"foo":"bar"}';
8 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 D008.phpt5 $json = '{"largenum":123456789012345678901234567890}';
6 $x = json_decode($json);
8 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
H A Djson_decode_invalid_utf8.phpt8 $json = json_decode($str, true, 512, JSON_INVALID_UTF8_SUBSTITUTE);
9 if (is_array($json)) {
10 var_dump(array_map(function($item) { return bin2hex($item); }, $json));
12 var_dump(bin2hex($json));
H A Dbug41067.phpt9 $json = json_encode($array);
10 print $json . "\n\n";
11 $json_decoded = json_decode($json, true);
H A Dbug63737.phpt5 function decode($json) {
6 $x = json_decode($json);
8 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
H A Dbug54484.phpt11 json_decode("invalid json");
14 json_decode("\"\001 invalid json\"");
H A Djson_encode_pretty_print.phpt5 function encode_decode($json) {
6 $struct = json_decode($json);
H A Dbug64874_part2.phpt5 function decode($json) {
6 var_dump(json_decode($json));
H A Dbug77843.phpt2 Bug #77843: Use after free with json serializer
H A Dbug73113.phpt3 Also test that the custom exception is not wrapped by ext/json
H A Dbug64874_part1.phpt5 function decode($json) {
6 var_dump(json_decode($json));
/PHP-8.0/scripts/dev/
H A Dgenfiles117 $MAKE RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" YACC="$YACC" srcdir=ext/json builddir=ext/json top_srcd…
118 -f ext/json/Makefile.frag \
119 ext/json/json_parser.tab.c \
120 ext/json/json_scanner.c
/PHP-8.0/ext/pcre/tests/
H A Dbug76514.phpt51 "heroku-sys/ext-json": "*",
252 "heroku-sys/ext-json": "*",
427 "name": "composer.json/composer.lock",
443 "composer.json/composer.lock": "dev-597511d6d51b96e4a8afeba2c79982e5",
489 (?<array> \[ (?: (?&json) \s* (?: , (?&json) \s* )* )? \s* \] )
490 (?<pair> \s* (?&string) \s* : (?&json) \s* )
492 (?<json> \s* (?: (?&number) | (?&boolean) | (?&string) | (?&array) | (?&object) ) )
494 ^(?P<start>\s*\{\s*(?:(?&string)\s*:\s*(?&json)\s*,\s*)*?)
495 (?P<property>'.preg_quote('"require"').'\s*:\s*)(?P<value>(?&json))(?P<end>.*)}sx', $str, $match);
502 "composer.json/composer.lock": "dev-597511d6d51b96e4a8afeba2c79982e5",
/PHP-8.0/ext/fileinfo/tests/
H A Dfinfo_file_002.phpt32 ["%s/test.json"]=>
33 string(16) "application/json"
/PHP-8.0/ext/opcache/tests/
H A Djmp_elim_001.phpt13 header('Content-Type: application/json');
/PHP-8.0/ext/standard/tests/class_object/
H A Dget_object_vars_variation_004.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
/PHP-8.0/sapi/fuzzer/
H A DREADME.md4 …uzzing SAPI, as well as all availablefuzzers. If you don't build the exif/json/mbstring extensions…
26 * `php-fuzz-json`: Fuzzing JSON parser (requires --enable-json)
H A DMakefile.frag17 $(SAPI_FUZZER_PATH)/php-fuzz-json: $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) $(PHP_FUZZER_JSON_OBJS)

Completed in 26 milliseconds

12