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_firebird /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
CONFLICTS
9
B
-rw-rw-r--
2022-10-31 11:36
bug_47415.phpt
882
B
-rw-rw-r--
2022-10-31 11:36
bug_48877.phpt
921
B
-rw-rw-r--
2022-10-31 11:36
bug_53280.phpt
1.12
KB
-rw-rw-r--
2022-10-31 11:36
bug_62024.phpt
916
B
-rw-rw-r--
2022-10-31 11:36
bug_64037.phpt
1.01
KB
-rw-rw-r--
2022-10-31 11:36
bug_72583.phpt
543
B
-rw-rw-r--
2022-10-31 11:36
bug_72931.phpt
439
B
-rw-rw-r--
2022-10-31 11:36
bug_73087.phpt
643
B
-rw-rw-r--
2022-10-31 11:36
bug_74462.phpt
704
B
-rw-rw-r--
2022-10-31 11:36
bug_76448.data
749
B
-rw-rw-r--
2022-10-31 11:36
bug_76448.phpt
697
B
-rw-rw-r--
2022-10-31 11:36
bug_76449.data
464
B
-rw-rw-r--
2022-10-31 11:36
bug_76449.phpt
700
B
-rw-rw-r--
2022-10-31 11:36
bug_76450.data
464
B
-rw-rw-r--
2022-10-31 11:36
bug_76450.phpt
815
B
-rw-rw-r--
2022-10-31 11:36
bug_76452.data
856
B
-rw-rw-r--
2022-10-31 11:36
bug_76452.phpt
696
B
-rw-rw-r--
2022-10-31 11:36
bug_76488.phpt
612
B
-rw-rw-r--
2022-10-31 11:36
bug_77863.phpt
3.1
KB
-rw-rw-r--
2022-10-31 11:36
bug_aaa.phpt
528
B
-rw-rw-r--
2022-10-31 11:36
common.phpt
848
B
-rw-rw-r--
2022-10-31 11:36
connect.phpt
211
B
-rw-rw-r--
2022-10-31 11:36
ddl.phpt
965
B
-rw-rw-r--
2022-10-31 11:36
dialect_1.phpt
1.3
KB
-rw-rw-r--
2022-10-31 11:36
execute.phpt
1.25
KB
-rw-rw-r--
2022-10-31 11:36
payload_server.inc
2.5
KB
-rw-rw-r--
2022-10-31 11:36
payload_server.php
478
B
-rw-rw-r--
2022-10-31 11:36
payload_test.data
424
B
-rw-rw-r--
2022-10-31 11:36
payload_test.phpt
654
B
-rw-rw-r--
2022-10-31 11:36
rowCount.phpt
950
B
-rw-rw-r--
2022-10-31 11:36
skipif.inc
202
B
-rw-rw-r--
2022-10-31 11:36
testdb.inc
595
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- PDO_Firebird: Bug #76488 Memory leak when fetching a BLOB field --SKIPIF-- <?php require('skipif.inc'); ?> --ENV-- LSAN_OPTIONS=detect_leaks=0 --FILE-- <?php require 'testdb.inc'; $sql = ' with recursive r(n) as ( select 1 from rdb$database union all select n+1 from r where n < 1000 ) select n, cast(lpad(\'A\', 8000, \'A\') as BLOB sub_type TEXT) as SRC from r '; for ($i = 0; $i < 10; $i++) { $sth = $dbh->prepare($sql); $sth->execute(); $rows = $sth->fetchAll(); unset($rows); unset($sth); } unset($dbh); echo "OK"; ?> --EXPECT-- OK