Wednesday, 3 June 2015

script execution time

This basic snippet will calculate how many seconds it to a script to start and then end.
<?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 exicute'; ?>

0 comments:

Post a Comment