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.119
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_sqlite /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
bug33841.phpt
690
B
-rw-rw-r--
2022-10-31 11:36
bug35336.phpt
570
B
-rw-rw-r--
2022-10-31 11:36
bug43831.phpt
1.02
KB
-rw-rw-r--
2022-10-31 11:36
bug44327_2.phpt
1007
B
-rw-rw-r--
2022-10-31 11:36
bug44327_3.phpt
616
B
-rw-rw-r--
2022-10-31 11:36
bug46139.phpt
1004
B
-rw-rw-r--
2022-10-31 11:36
bug46542.phpt
392
B
-rw-rw-r--
2022-10-31 11:36
bug48773.phpt
804
B
-rw-rw-r--
2022-10-31 11:36
bug50728.phpt
307
B
-rw-rw-r--
2022-10-31 11:36
bug52487.phpt
422
B
-rw-rw-r--
2022-10-31 11:36
bug60104.phpt
381
B
-rw-rw-r--
2022-10-31 11:36
bug66033.phpt
746
B
-rw-rw-r--
2022-10-31 11:36
bug70221.phpt
562
B
-rw-rw-r--
2022-10-31 11:36
bug70862.phpt
895
B
-rw-rw-r--
2022-10-31 11:36
bug78192.phpt
1.05
KB
-rw-rw-r--
2022-10-31 11:36
bug79664.phpt
582
B
-rw-rw-r--
2022-10-31 11:36
bug_42589.phpt
677
B
-rw-rw-r--
2022-10-31 11:36
bug_63916-2.phpt
790
B
-rw-rw-r--
2022-10-31 11:36
bug_63916.phpt
768
B
-rw-rw-r--
2022-10-31 11:36
bug_64705.phpt
415
B
-rw-rw-r--
2022-10-31 11:36
common.phpt
221
B
-rw-rw-r--
2022-10-31 11:36
debugdumpparams_001.phpt
619
B
-rw-rw-r--
2022-10-31 11:36
pdo_fetch_func_001.phpt
3.35
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createaggregate.phpt
710
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createaggregate_002.phpt
489
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createcollation.phpt
907
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction.phpt
759
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction_002.phpt
434
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction_with_flags.phpt
881
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_extendederror_attr.phpt
2.31
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_get_attribute.phpt
337
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_lastinsertid.phpt
679
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_open_flags.phpt
934
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_statement_getattribute.phpt
447
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_tostring_exception.phpt
868
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_transaction.phpt
585
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Bug #48773 (Incorrect error when setting PDO::ATTR_STATEMENT_CLASS with ctor_args) --SKIPIF-- <?php if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; ?> --FILE-- <?php class bar extends PDOStatement { private function __construct() { } } class foo extends PDO { public $statementClass = 'bar'; function __construct($dsn, $username, $password, $driver_options = array()) { $driver_options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_EXCEPTION; parent::__construct($dsn, $username, $password, $driver_options); $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, array($this->statementClass, array($this))); } } $db = new foo('sqlite::memory:', '', ''); $stmt = $db->query('SELECT 1'); var_dump($stmt); ?> --EXPECTF-- object(bar)#%d (1) { ["queryString"]=> string(8) "SELECT 1" }