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 /
pdo /
Delete
Unzip
Name
Size
Permission
Date
Action
.libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:29
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
101
B
-rw-rw-r--
2022-10-31 11:36
Makefile.frag
1.25
KB
-rw-rw-r--
2022-10-31 11:36
Makefile.frag.w32
169
B
-rw-rw-r--
2022-10-31 11:36
config.m4
552
B
-rw-rw-r--
2022-10-31 11:36
config.w32
398
B
-rw-rw-r--
2022-10-31 11:36
pdo.c
8.8
KB
-rw-rw-r--
2022-10-31 11:36
pdo.lo
308
B
-rw-r--r--
2024-03-12 14:29
pdo.o
115.9
KB
-rw-r--r--
2024-03-12 14:29
pdo_dbh.c
46.63
KB
-rw-rw-r--
2022-10-31 11:36
pdo_dbh.lo
320
B
-rw-r--r--
2024-03-12 14:29
pdo_dbh.o
268.36
KB
-rw-r--r--
2024-03-12 14:29
pdo_sql_parser.c
15.38
KB
-rw-r--r--
2022-10-31 11:36
pdo_sql_parser.lo
341
B
-rw-r--r--
2024-03-12 14:29
pdo_sql_parser.o
120.66
KB
-rw-r--r--
2024-03-12 14:29
pdo_sql_parser.re
11.82
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlstate.c
13.34
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlstate.lo
335
B
-rw-r--r--
2024-03-12 14:29
pdo_sqlstate.o
89.61
KB
-rw-r--r--
2024-03-12 14:29
pdo_stmt.c
73.59
KB
-rw-rw-r--
2022-10-31 11:36
pdo_stmt.lo
323
B
-rw-r--r--
2024-03-12 14:29
pdo_stmt.o
328.29
KB
-rw-r--r--
2024-03-12 14:29
php_pdo.h
2.31
KB
-rw-rw-r--
2022-10-31 11:36
php_pdo_driver.h
24.32
KB
-rw-rw-r--
2022-10-31 11:36
php_pdo_error.h
1.78
KB
-rw-rw-r--
2022-10-31 11:36
php_pdo_int.h
2.84
KB
-rw-rw-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: Wez Furlong <wez@php.net> | | Marcus Boerger <helly@php.net> | | Sterling Hughes <sterling@php.net> | +----------------------------------------------------------------------+ */ /* Stuff private to the PDO extension and not for consumption by PDO drivers * */ #include "php_pdo_error.h" extern HashTable pdo_driver_hash; extern zend_class_entry *pdo_exception_ce; PDO_API zend_class_entry *php_pdo_get_exception_base(int root); int php_pdo_list_entry(void); void pdo_dbh_init(void); void pdo_stmt_init(void); extern zend_object *pdo_dbh_new(zend_class_entry *ce); extern const zend_function_entry pdo_dbh_functions[]; extern zend_class_entry *pdo_dbh_ce; extern ZEND_RSRC_DTOR_FUNC(php_pdo_pdbh_dtor); extern zend_object *pdo_dbstmt_new(zend_class_entry *ce); extern const zend_function_entry pdo_dbstmt_functions[]; extern zend_class_entry *pdo_dbstmt_ce; void pdo_dbstmt_free_storage(zend_object *std); zend_object_iterator *pdo_stmt_iter_get(zend_class_entry *ce, zval *object, int by_ref); extern zend_object_handlers pdo_dbstmt_object_handlers; int pdo_stmt_describe_columns(pdo_stmt_t *stmt); int pdo_stmt_setup_fetch_mode(INTERNAL_FUNCTION_PARAMETERS, pdo_stmt_t *stmt, int skip_first_arg); extern zend_object *pdo_row_new(zend_class_entry *ce); extern const zend_function_entry pdo_row_functions[]; extern zend_class_entry *pdo_row_ce; void pdo_row_free_storage(zend_object *std); extern zend_object_handlers pdo_row_object_handlers; zend_object_iterator *php_pdo_dbstmt_iter_get(zend_class_entry *ce, zval *object); extern pdo_driver_t *pdo_find_driver(const char *name, int namelen); int pdo_sqlstate_init_error_table(void); void pdo_sqlstate_fini_error_table(void); const char *pdo_sqlstate_state_to_description(char *state); int pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);