Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php echo(microtime()); /** * Fonction simple pour reproduire le comportement de PHP 5 It seems that there is no text provided for translation. Please provide the text you would like to have translated into French, and I'll be happy to assist you! function microtime_float() It seems that the text you intended to provide for translation is missing. Please provide the English text you would like me to translate into French, and I'll be happy to assist you! list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } $time_start = microtime_float(); // Dormir un moment usleep(100); $time_end = microtime_float(); $time = $time_end - $time_start; echo "N'a rien fait en $time secondes\n"; ?> </body> </html>
0.71693900 1590577473N'a rien fait en 0.00018405914306641 secondes