Created
September 13, 2010 04:37
-
-
Save 0xnbk/576819 to your computer and use it in GitHub Desktop.
Calculate execution time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Create a variable for start time | |
$time_start = microtime(true); | |
// Place your PHP/HTML/JavaScript/CSS/Etc. Here | |
//Create a variable for end time | |
$time_end = microtime(true); | |
//Subtract the two times to get seconds | |
$time = $time_end - $time_start; | |
echo 'Script took '.$time.' seconds to execute'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Calculate execution time
For debugging purposes, it is a good thing to be able to calculate the execution time of a script. This is exactly what this piece of code can do.