/PHP-8.2/ext/json/ |
H A D | Makefile.frag.w32 | 1 ext\json\json_scanner.c ext\json\php_json_scanner_defs.h: ext\json\json_scanner.re ext\json\json_pa… 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.tab.h: ext\json\json_parser.y 5 $(BISON) --defines -l ext/json/json_parser.y -o ext/json/json_parser.tab.c
|
H A D | config.w32 | 3 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 D | json.c | 33 static PHP_MINFO_FUNCTION(json); 41 static PHP_MINIT_FUNCTION(json) in ZEND_DECLARE_MODULE_GLOBALS() 54 static PHP_GINIT_FUNCTION(json) in PHP_GINIT_FUNCTION() argument 65 static PHP_RINIT_FUNCTION(json) in PHP_RINIT_FUNCTION() argument 76 PHP_MINIT(json), 78 PHP_RINIT(json), 80 PHP_MINFO(json), 82 PHP_MODULE_GLOBALS(json), 83 PHP_GINIT(json), 94 ZEND_GET_MODULE(json) in ZEND_GET_MODULE() argument [all …]
|
H A D | config.m4 | 4 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 D | php_json.h | 87 ZEND_BEGIN_MODULE_GLOBALS(json) 91 ZEND_END_MODULE_GLOBALS(json) 93 PHP_JSON_API ZEND_EXTERN_MODULE_GLOBALS(json) 94 #define JSON_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(json, v)
|
/PHP-8.2/ext/json/tests/ |
H A D | bug73991.phpt | 6 $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 D | 008.phpt | 5 $json = '{"largenum":123456789012345678901234567890}'; 6 $x = json_decode($json); 8 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
|
H A D | json_decode_invalid_utf8.phpt | 8 $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 D | bug41067.phpt | 9 $json = json_encode($array); 10 print $json . "\n\n"; 11 $json_decoded = json_decode($json, true);
|
H A D | bug63737.phpt | 5 function decode($json) { 6 $x = json_decode($json); 8 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
|
H A D | bug54484.phpt | 11 json_decode("invalid json"); 14 json_decode("\"\001 invalid json\"");
|
H A D | json_encode_pretty_print.phpt | 5 function encode_decode($json) { 6 $struct = json_decode($json);
|
H A D | bug64874_part2.phpt | 5 function decode($json) { 6 var_dump(json_decode($json));
|
H A D | bug77843.phpt | 2 Bug #77843: Use after free with json serializer
|
H A D | bug73113.phpt | 3 Also test that the custom exception is not wrapped by ext/json
|
H A D | bug64874_part1.phpt | 5 function decode($json) { 6 var_dump(json_decode($json));
|
/PHP-8.2/scripts/dev/ |
H A D | genfiles | 117 $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.2/ext/pcre/tests/ |
H A D | bug76514.phpt | 51 "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.2/sapi/fpm/tests/ |
H A D | bug64539-status-json-encoding.phpt | 2 FPM: bug64539 - status json format escaping 33 ['uri' => '/status', 'query' => 'full&json', 'delay' => 100000],
|
/PHP-8.2/ext/fileinfo/tests/upstream/ |
H A D | json3.testfile | 3 "json": "crab",
|
/PHP-8.2/ext/fileinfo/tests/ |
H A D | finfo_file_002.phpt | 32 ["%s/test.json"]=> 33 string(16) "application/json"
|
/PHP-8.2/.github/actions/notify-slack/ |
H A D | action.yml | 10 …curl -X POST -H 'Content-type: application/json' --data '{"attachments": [{"text": "Job in *nightl…
|
/PHP-8.2/ext/opcache/tests/ |
H A D | jmp_elim_001.phpt | 14 header('Content-Type: application/json');
|
/PHP-8.2/.github/ |
H A D | labeler.yml | 77 "Extension: json": 78 - ext/json/**/* 279 - 'ext/json/php_json.h' 280 - 'ext/json/php_json_parser.h' 281 - 'ext/json/php_json_scanner.h'
|
/PHP-8.2/ext/spl/ |
H A D | config.m4 | 5 PHP_ADD_EXTENSION_DEP(spl, json)
|