Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php echo(microtime()); /** * Simple function to replicate PHP 5 behaviour */ function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } $time_start = microtime_float(); // Sleep for a while usleep(100); $time_end = microtime_float(); $time = $time_end - $time_start; echo "Did nothing in $time seconds\n"; ?> </body> <!-- Mirrored from www.w3schools.com/php/phptryit.asp?filename=tryphp_func_microtime by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 15:01:48 GMT --> </html>
0.71693900 1590577473Did nothing in 0.00018405914306641 seconds