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 /
tests /
run-test /
Delete
Unzip
Name
Size
Permission
Date
Action
bug75042-2.phpt
148
B
-rw-rw-r--
2022-10-31 11:36
bug75042-3.phpt
285
B
-rw-rw-r--
2022-10-31 11:36
bug75042.phpt
524
B
-rw-rw-r--
2022-10-31 11:36
test001.phpt
44
B
-rw-rw-r--
2022-10-31 11:36
test002.phpt
89
B
-rw-rw-r--
2022-10-31 11:36
test003.phpt
108
B
-rw-rw-r--
2022-10-31 11:36
test004.phpt
147
B
-rw-rw-r--
2022-10-31 11:36
test005.phpt
973
B
-rw-rw-r--
2022-10-31 11:36
test006.phpt
162
B
-rw-rw-r--
2022-10-31 11:36
test007.phpt
1.16
KB
-rw-rw-r--
2022-10-31 11:36
test008.phpt
930
B
-rw-rw-r--
2022-10-31 11:36
test008a.phpt
976
B
-rw-rw-r--
2022-10-31 11:36
test009.phpt
113
B
-rw-rw-r--
2022-10-31 11:36
test010.phpt
350
B
-rw-rw-r--
2022-10-31 11:36
test011.phpt
70
B
-rw-rw-r--
2022-10-31 11:36
test011.txt
4
B
-rw-rw-r--
2022-10-31 11:36
test012.phpt
98
B
-rw-rw-r--
2022-10-31 11:36
test012.txt
21
B
-rw-rw-r--
2022-10-31 11:36
test013.phpt
109
B
-rw-rw-r--
2022-10-31 11:36
test013.txt
29
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Error message handling (with ZendOpcache) --SKIPIF-- <?php if (!extension_loaded("Zend Opcache")) die("skip Zend Opcache is not loaded"); ?> --INI-- track_errors=1 --FILE-- <?php // If this test fails ask the developers of run-test.php // // We check the general ini settings which affect error handling // and than verify if a message is given by a division by zero. // EXPECTF is used here since the error format may change but ut // should always contain 'Division by zero'. var_dump(ini_get('display_errors')); var_dump(ini_get('error_reporting')); var_dump(ini_get('log_errors')); var_dump(ini_get('track_errors')); ini_set('display_errors', 0); var_dump(ini_get('display_errors')); var_dump($php_errormsg); $zero = 0; $error = 1 / $zero; var_dump($php_errormsg); ?> --EXPECTF-- Deprecated: Directive 'track_errors' is deprecated in Unknown on line 0 string(1) "1" string(5) "32767" string(1) "0" string(1) "1" string(1) "0" NULL string(%d) "%sivision by zer%s"