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 /
bz2 /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
1.1
KB
-rw-rw-r--
2022-10-31 11:36
002.phpt
3.23
KB
-rw-rw-r--
2022-10-31 11:36
003-mb.phpt
959
B
-rw-rw-r--
2022-10-31 11:36
003.phpt
923
B
-rw-rw-r--
2022-10-31 11:36
003.txt.bz2
126
B
-rw-rw-r--
2022-10-31 11:36
003私はガラスを食べられます.txt.bz2
126
B
-rw-rw-r--
2022-10-31 11:36
004.phpt
1.96
KB
-rw-rw-r--
2022-10-31 11:36
004_1.txt.bz2
125
B
-rw-rw-r--
2022-10-31 11:36
004_2.txt.bz2
123
B
-rw-rw-r--
2022-10-31 11:36
005.phpt
1.62
KB
-rw-rw-r--
2022-10-31 11:36
72613.bz2
351
B
-rw-rw-r--
2022-10-31 11:36
bug51997.phpt
460
B
-rw-rw-r--
2022-10-31 11:36
bug71263.phpt
1.6
KB
-rw-rw-r--
2022-10-31 11:36
bug72447.phpt
497
B
-rw-rw-r--
2022-10-31 11:36
bug72613.phpt
424
B
-rw-rw-r--
2022-10-31 11:36
bug75776.phpt
636
B
-rw-rw-r--
2022-10-31 11:36
bug81092.phpt
574
B
-rw-rw-r--
2022-10-31 11:36
bz2_filter_compress.phpt
607
B
-rw-rw-r--
2022-10-31 11:36
bz2_filter_decompress.phpt
610
B
-rw-rw-r--
2022-10-31 11:36
with_files.phpt
398
B
-rw-rw-r--
2022-10-31 11:36
with_strings.phpt
437
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- bzread() tests with invalid files --SKIPIF-- <?php if (!extension_loaded("bz2")) print "skip"; ?> --FILE-- <?php $fd = bzopen(__DIR__."/004_1.txt.bz2","r"); var_dump(bzerror($fd)); var_dump(bzerrstr($fd)); var_dump(bzerrno($fd)); $fd2 = bzopen(__DIR__."/004_2.txt.bz2","r"); var_dump(bzerror($fd2)); var_dump(bzerrstr($fd2)); var_dump(bzerrno($fd2)); var_dump(bzread($fd, 10)); var_dump(bzerror($fd)); var_dump(bzerrstr($fd)); var_dump(bzerrno($fd)); var_dump(bzread($fd2, 10)); var_dump(bzerror($fd2)); var_dump(bzerrstr($fd2)); var_dump(bzerrno($fd2)); var_dump(bzread($fd)); var_dump(bzerror($fd)); var_dump(bzerrstr($fd)); var_dump(bzerrno($fd)); var_dump(bzread($fd2)); var_dump(bzerror($fd2)); var_dump(bzerrstr($fd2)); var_dump(bzerrno($fd2)); bzclose($fd2); var_dump(bzread($fd2)); var_dump(bzerror($fd2)); var_dump(bzerrstr($fd2)); var_dump(bzerrno($fd2)); echo "Done\n"; ?> --EXPECTF-- array(2) { ["errno"]=> int(0) ["errstr"]=> string(2) "OK" } string(2) "OK" int(0) array(2) { ["errno"]=> int(0) ["errstr"]=> string(2) "OK" } string(2) "OK" int(0) bool(false) array(2) { ["errno"]=> int(-5) ["errstr"]=> string(16) "DATA_ERROR_MAGIC" } string(16) "DATA_ERROR_MAGIC" int(-5) bool(false) array(2) { ["errno"]=> int(-4) ["errstr"]=> string(10) "DATA_ERROR" } string(10) "DATA_ERROR" int(-4) bool(false) array(2) { ["errno"]=> int(-5) ["errstr"]=> string(16) "DATA_ERROR_MAGIC" } string(16) "DATA_ERROR_MAGIC" int(-5) bool(false) array(2) { ["errno"]=> int(-4) ["errstr"]=> string(10) "DATA_ERROR" } string(10) "DATA_ERROR" int(-4) Warning: bzread(): supplied resource is not a valid stream resource in %s on line %d bool(false) Warning: bzerror(): supplied resource is not a valid stream resource in %s on line %d bool(false) Warning: bzerrstr(): supplied resource is not a valid stream resource in %s on line %d bool(false) Warning: bzerrno(): supplied resource is not a valid stream resource in %s on line %d bool(false) Done