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.112
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 /
sqlite3 /
Delete
Unzip
Name
Size
Permission
Date
Action
.libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:23
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
53
B
-rw-rw-r--
2022-10-31 11:36
config.w32
535
B
-rw-rw-r--
2022-10-31 11:36
config0.m4
1.03
KB
-rw-rw-r--
2022-10-31 11:36
php_sqlite3.h
1.72
KB
-rw-rw-r--
2022-10-31 11:36
php_sqlite3_structs.h
4.03
KB
-rw-rw-r--
2022-10-31 11:36
sqlite3.c
73.34
KB
-rw-rw-r--
2022-10-31 11:36
sqlite3.lo
324
B
-rw-r--r--
2024-03-12 14:23
sqlite3.o
356.64
KB
-rw-r--r--
2024-03-12 14:23
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. | +----------------------------------------------------------------------+ | Authors: Scott MacVicar <scottmac@php.net> | +----------------------------------------------------------------------+ */ #ifndef PHP_SQLITE3_H #define PHP_SQLITE3_H #define PHP_SQLITE3_VERSION PHP_VERSION extern zend_module_entry sqlite3_module_entry; #define phpext_sqlite3_ptr &sqlite3_module_entry ZEND_BEGIN_MODULE_GLOBALS(sqlite3) char *extension_dir; int dbconfig_defensive; ZEND_END_MODULE_GLOBALS(sqlite3) #if defined(ZTS) && defined(COMPILE_DL_SQLITE3) ZEND_TSRMLS_CACHE_EXTERN() #endif ZEND_EXTERN_MODULE_GLOBALS(sqlite3) #define SQLITE3G(v) ZEND_MODULE_GLOBALS_ACCESSOR(sqlite3, v) #define PHP_SQLITE3_ASSOC 1<<0 #define PHP_SQLITE3_NUM 1<<1 #define PHP_SQLITE3_BOTH (PHP_SQLITE3_ASSOC|PHP_SQLITE3_NUM) #endif