Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
json /
Delete
Unzip
Name
Size
Permission
Date
Action
.libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:28
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
48
B
-rw-rw-r--
2022-10-31 11:36
Makefile.frag
278
B
-rw-rw-r--
2022-10-31 11:36
Makefile.frag.w32
315
B
-rw-rw-r--
2022-10-31 11:36
config.m4
614
B
-rw-rw-r--
2022-10-31 11:36
config.w32
937
B
-rw-rw-r--
2022-10-31 11:36
json.c
11.86
KB
-rw-rw-r--
2022-10-31 11:36
json.lo
312
B
-rw-r--r--
2024-03-12 14:28
json.o
136.99
KB
-rw-r--r--
2024-03-12 14:28
json_encoder.c
14.96
KB
-rw-rw-r--
2022-10-31 11:36
json_encoder.lo
336
B
-rw-r--r--
2024-03-12 14:28
json_encoder.o
191.02
KB
-rw-r--r--
2024-03-12 14:28
json_parser.lo
333
B
-rw-r--r--
2024-03-12 14:28
json_parser.o
109.02
KB
-rw-r--r--
2024-03-12 14:28
json_parser.tab.c
54.02
KB
-rw-r--r--
2022-10-31 11:36
json_parser.tab.h
2.73
KB
-rw-r--r--
2022-10-31 11:36
json_parser.y
7.67
KB
-rw-rw-r--
2022-10-31 11:36
json_scanner.c
38.81
KB
-rw-r--r--
2022-10-31 11:36
json_scanner.lo
336
B
-rw-r--r--
2024-03-12 14:28
json_scanner.o
115.16
KB
-rw-r--r--
2024-03-12 14:28
json_scanner.re
11.23
KB
-rw-rw-r--
2022-10-31 11:36
php_json.h
3.92
KB
-rw-rw-r--
2022-10-31 11:36
php_json_encoder.h
1.58
KB
-rw-rw-r--
2022-10-31 11:36
php_json_parser.h
3.17
KB
-rw-rw-r--
2022-10-31 11:36
php_json_scanner.h
2.36
KB
-rw-rw-r--
2022-10-31 11:36
php_json_scanner_defs.h
105
B
-rw-r--r--
2022-10-31 11:36
Save
Rename
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Jakub Zelenka <bukka@php.net> | +----------------------------------------------------------------------+ */ #ifndef PHP_JSON_ENCODER_H #define PHP_JSON_ENCODER_H #include "php.h" #include "zend_smart_str.h" typedef struct _php_json_encoder php_json_encoder; struct _php_json_encoder { int depth; int max_depth; php_json_error_code error_code; }; static inline void php_json_encode_init(php_json_encoder *encoder) { memset(encoder, 0, sizeof(php_json_encoder)); } int php_json_encode_zval(smart_str *buf, zval *val, int options, php_json_encoder *encoder); #endif /* PHP_JSON_ENCODER_H */