-
Notifications
You must be signed in to change notification settings - Fork 7
/
json.php
310 lines (279 loc) · 8.94 KB
/
json.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?php
// Start of json v.1.4.0
/**
* Objects implementing JsonSerializable
* can customize their JSON representation when encoded with
* <b>json_encode</b>.
* @link http://php.net/manual/en/class.jsonserializable.php
*/
interface JsonSerializable {
/**
* (PHP 5 >= 5.4.0, PHP 7)<br/>
* Specify data which should be serialized to JSON
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php
* @return mixed data which can be serialized by <b>json_encode</b>,
* which is a value of any type other than a resource.
*/
abstract public function jsonSerialize();
}
/**
* (PHP 5 >= 5.2.0, PECL json >= 1.2.0, PHP 7)<br/>
* Returns the JSON representation of a value
* @link http://php.net/manual/en/function.json-encode.php
* @param mixed $value <p>
* The <i>value</i> being encoded. Can be any type except
* a resource.
* </p>
* <p>
* All string data must be UTF-8 encoded.
* </p>
* <p>
* PHP implements a superset of JSON as specified in the original
* RFC 4627 - it will also encode and
* decode scalar types and <b>NULL</b>. RFC 4627 only supports these values when
* they are nested inside an array or an object.
* </p>
* <p>
* Although this superset is consistent with the expanded definition of "JSON
* text" in the newer RFC 7159 (which
* aims to supersede RFC 4627) and
* ECMA-404, this may cause
* interoperability issues with older JSON parsers that adhere strictly to RFC
* 4627 when encoding a single scalar value.
* </p>
* @param int $options [optional] <p>
* Bitmask consisting of <b>JSON_HEX_QUOT</b>,
* <b>JSON_HEX_TAG</b>,
* <b>JSON_HEX_AMP</b>,
* <b>JSON_HEX_APOS</b>,
* <b>JSON_NUMERIC_CHECK</b>,
* <b>JSON_PRETTY_PRINT</b>,
* <b>JSON_UNESCAPED_SLASHES</b>,
* <b>JSON_FORCE_OBJECT</b>,
* <b>JSON_PRESERVE_ZERO_FRACTION</b>,
* <b>JSON_UNESCAPED_UNICODE</b>,
* <b>JSON_PARTIAL_OUTPUT_ON_ERROR</b>. The behaviour of these
* constants is described on the
* JSON constants page.
* </p>
* @param int $depth [optional] <p>
* Set the maximum depth. Must be greater than zero.
* </p>
* @return string a JSON encoded string on success or <b>FALSE</b> on failure.
*/
function json_encode($value, int $options = 0, int $depth = 512): string {}
/**
* (PHP 5 >= 5.2.0, PECL json >= 1.2.0, PHP 7)<br/>
* Decodes a JSON string
* @link http://php.net/manual/en/function.json-decode.php
* @param string $json <p>
* The <i>json</i> string being decoded.
* </p>
* <p>
* This function only works with UTF-8 encoded strings.
* </p>
* <p>
* PHP implements a superset of JSON as specified in the original
* RFC 4627 - it will also encode and
* decode scalar types and <b>NULL</b>. RFC 4627 only supports these values when
* they are nested inside an array or an object.
* </p>
* <p>
* Although this superset is consistent with the expanded definition of "JSON
* text" in the newer RFC 7159 (which
* aims to supersede RFC 4627) and
* ECMA-404, this may cause
* interoperability issues with older JSON parsers that adhere strictly to RFC
* 4627 when encoding a single scalar value.
* </p>
* @param bool $assoc [optional] <p>
* When <b>TRUE</b>, returned objects will be converted into
* associative arrays.
* </p>
* @param int $depth [optional] <p>
* User specified recursion depth.
* </p>
* @param int $options [optional] <p>
* Bitmask of JSON decode options. Currently only
* <b>JSON_BIGINT_AS_STRING</b>
* is supported (default is to cast large integers as floats)
* </p>
* @return mixed the value encoded in <i>json</i> in appropriate
* PHP type. Values true, false and
* null are returned as <b>TRUE</b>, <b>FALSE</b> and <b>NULL</b>
* respectively. <b>NULL</b> is returned if the <i>json</i> cannot
* be decoded or if the encoded data is deeper than the recursion limit.
*/
function json_decode(string $json, bool $assoc = false, int $depth = 512, int $options = 0) {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Returns the last error occurred
* @link http://php.net/manual/en/function.json-last-error.php
* @return int an integer, the value can be one of the following
* constants:
*/
function json_last_error(): int {}
/**
* (PHP 5 >= 5.5.0, PHP 7)<br/>
* Returns the error string of the last json_encode() or json_decode() call
* @link http://php.net/manual/en/function.json-last-error-msg.php
* @return string the error message on success, "No Error" if no
* error has occurred, or <b>FALSE</b> on failure.
*/
function json_last_error_msg(): string {}
/**
* All < and > are converted to \u003C and \u003E.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_TAG', 1);
/**
* All &#38;s are converted to \u0026.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_AMP', 2);
/**
* All ' are converted to \u0027.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_APOS', 4);
/**
* All " are converted to \u0022.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_QUOT', 8);
/**
* Outputs an object rather than an array when a non-associative array is
* used. Especially useful when the recipient of the output is expecting
* an object and the array is empty.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_FORCE_OBJECT', 16);
/**
* Encodes numeric strings as numbers.
* Available since PHP 5.3.3.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_NUMERIC_CHECK', 32);
/**
* Don't escape /.
* Available since PHP 5.4.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_UNESCAPED_SLASHES', 64);
/**
* Use whitespace in returned data to format it.
* Available since PHP 5.4.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_PRETTY_PRINT', 128);
/**
* Encode multibyte Unicode characters literally (default is to escape as \uXXXX).
* Available since PHP 5.4.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_UNESCAPED_UNICODE', 256);
/**
* Substitute some unencodable values instead of failing.
* Available since PHP 5.5.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_PARTIAL_OUTPUT_ON_ERROR', 512);
/**
* Ensures that float values are always encoded as a float value.
* Available since PHP 5.6.6.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_PRESERVE_ZERO_FRACTION', 1024);
define ('JSON_OBJECT_AS_ARRAY', 1);
/**
* Encodes large integers as their original string value.
* Available since PHP 5.4.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_BIGINT_AS_STRING', 2);
/**
* No error has occurred.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_NONE', 0);
/**
* The maximum stack depth has been exceeded.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_DEPTH', 1);
/**
* Occurs with underflow or with the modes mismatch.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_STATE_MISMATCH', 2);
/**
* Control character error, possibly incorrectly encoded.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_CTRL_CHAR', 3);
/**
* Syntax error.
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_SYNTAX', 4);
/**
* Malformed UTF-8 characters, possibly incorrectly encoded. This
* constant is available as of PHP 5.3.3.
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_UTF8', 5);
/**
* <p>
* The object or array passed to <b>json_encode</b> include
* recursive references and cannot be encoded.
* If the <b>JSON_PARTIAL_OUTPUT_ON_ERROR</b> option was
* given, <b>NULL</b> will be encoded in the place of the recursive reference.
* </p>
* <p>
* This constant is available as of PHP 5.5.0.
* </p>
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_RECURSION', 6);
/**
* <p>
* The value passed to <b>json_encode</b> includes either
* <b>NAN</b>
* or <b>INF</b>.
* If the <b>JSON_PARTIAL_OUTPUT_ON_ERROR</b> option was
* given, 0 will be encoded in the place of these
* special numbers.
* </p>
* <p>
* This constant is available as of PHP 5.5.0.
* </p>
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_INF_OR_NAN', 7);
/**
* <p>
* A value of an unsupported type was given to
* <b>json_encode</b>, such as a resource.
* If the <b>JSON_PARTIAL_OUTPUT_ON_ERROR</b> option was
* given, <b>NULL</b> will be encoded in the place of the unsupported value.
* </p>
* <p>
* This constant is available as of PHP 5.5.0.
* </p>
* @link http://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_UNSUPPORTED_TYPE', 8);
define ('JSON_ERROR_INVALID_PROPERTY_NAME', 9);
define ('JSON_ERROR_UTF16', 10);
// End of json v.1.4.0
?>