Home
last modified time | relevance | path

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

123

/PHP-5.6/ext/json/
H A Dconfig.w324 ARG_ENABLE("json", "JavaScript Object Serialization support", "yes");
7 EXTENSION('json', 'json.c', PHP_JSON_SHARED, "");
8 ADD_SOURCES(configure_module_dirname, "JSON_parser.c", "json");
9 PHP_INSTALL_HEADERS("ext/json/", "php_json.h");
H A Dconfig.m45 PHP_ARG_ENABLE(json, whether to enable JavaScript Object Serialization support,
6 [ --disable-json Disable JavaScript Object Serialization support], yes)
12 PHP_NEW_EXTENSION(json, json.c JSON_parser.c, $ext_shared)
13 PHP_INSTALL_HEADERS([ext/json], [php_json.h])
H A DREADME1 json 1.2.0
19 mixed json_decode ( string json, [bool assoc] )
34 $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
35 var_dump(json_decode($json));
50 $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
51 var_dump(json_decode($json, true));
75 [0] http://www.crockford.com/JSON/draft-jsonorg-json-00.txt
H A Djson.dsp1 # Microsoft Developer Studio Project File - Name="json" - Package Owner=<4>
7 CFG=json - Win32 Debug_TS
11 !MESSAGE NMAKE /f "json.mak".
16 !MESSAGE NMAKE /f "json.mak" CFG="json - Win32 Debug_TS"
20 !MESSAGE "json - Win32 Debug_TS" (based on "Win32 (x86) Dynamic-Link Library")
21 !MESSAGE "json - Win32 Release_TS" (based on "Win32 (x86) Dynamic-Link Library")
32 !IF "$(CFG)" == "json - Win32 Debug_TS"
58 !ELSEIF "$(CFG)" == "json - Win32 Release_TS"
88 # Name "json - Win32 Debug_TS"
89 # Name "json - Win32 Release_TS"
[all …]
H A Dphp_json.h40 ZEND_BEGIN_MODULE_GLOBALS(json)
44 ZEND_END_MODULE_GLOBALS(json)
H A Djson.c42 static PHP_MINFO_FUNCTION(json);
52 ZEND_DECLARE_MODULE_GLOBALS(json)
62 ZEND_ARG_INFO(0, json)
97 static PHP_MINIT_FUNCTION(json) in PHP_MINIT_FUNCTION() argument
135 static PHP_GINIT_FUNCTION(json) in PHP_GINIT_FUNCTION() argument
150 PHP_MINIT(json),
154 PHP_MINFO(json),
156 PHP_MODULE_GLOBALS(json),
157 PHP_GINIT(json),
165 ZEND_GET_MODULE(json)
[all …]
/PHP-5.6/ext/json/tests/
H A D008.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
7 $json = '{"largenum":123456789012345678901234567890}';
8 $x = json_decode($json);
10 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
H A Dbug41067.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
11 $json = json_encode($array);
12 print $json . "\n\n";
13 $json_decoded = json_decode($json, true);
H A Dbug63737.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
7 function decode($json) {
8 $x = json_decode($json);
10 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
H A Djson_encode_pretty_print.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
7 function encode_decode($json) {
8 $struct = json_decode($json);
H A Dbug64874_part2.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
7 function decode($json) {
8 var_dump(json_decode($json));
H A Dbug54484.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
13 json_decode("invalid json");
H A Dbug73113.phpt3 Also test that the custom exception is not wrapped by ext/json
5 <?php if (!extension_loaded("json")) print "skip"; ?>
H A Dbug64874_part1.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
7 function decode($json) {
8 var_dump(json_decode($json));
H A Dbug45791.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
H A Dbug55543.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
H A Djson_encode_unescaped_slashes.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
H A D005.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
H A Dbug41567.phpt6 <?php if (!extension_loaded('json')) print 'skip'; ?>
H A Dbug42090.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
H A Dbug41034.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
H A Djson_encode_numeric.phpt4 <?php if (!extension_loaded("json")) print "skip"; ?>
/PHP-5.6/ext/simplexml/tests/
H A Dbug66084_1.phpt2 Bug #66084 simplexml_load_string() mangles empty node name, json variant
5 <?php if (!extension_loaded("json")) print "skip json not available"; ?>
/PHP-5.6/sapi/fpm/tests/
H A D010.phpt41 $json = run_request('127.0.0.1', $port, '/status', 'json');
42 var_dump(strpos($json, 'application/json') && strpos($json, '"pool":"unconfined"'));
/PHP-5.6/ext/pdo_pgsql/tests/
H A Dbug66584.phpt6 if (!extension_loaded('json')) die('skip json ext not loaded');

Completed in 27 milliseconds

123