PHP : Calculate the execution time of a script

//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';
Processing your request, Please wait....

No Responses to “PHP : Calculate the execution time of a script”

Comments (Your Comments)

Leave a Reply

You must be logged in to post a comment.