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-- bzopen() and invalid parameters --SKIPIF-- <?php if (!extension_loaded("bz2")) print "skip"; ?> --FILE-- <?php var_dump(bzopen()); var_dump(bzopen("", "")); var_dump(bzopen("", "r")); var_dump(bzopen("", "w")); var_dump(bzopen("", "x")); var_dump(bzopen("", "rw")); var_dump(bzopen("no_such_file", "r")); $fp = fopen(__FILE__,"r"); var_dump(bzopen($fp, "r")); echo "Done\n"; ?> --EXPECTF-- Warning: bzopen() expects exactly 2 parameters, 0 given in %s on line %d NULL Warning: bzopen(): '' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on line %d bool(false) Warning: bzopen(): filename cannot be empty in %s on line %d bool(false) Warning: bzopen(): filename cannot be empty in %s on line %d bool(false) Warning: bzopen(): 'x' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on line %d bool(false) Warning: bzopen(): 'rw' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on line %d bool(false) Warning: bzopen(no_such_file): failed to open stream: No such file or directory in %s on line %d bool(false) resource(%d) of type (stream) Done