Snippet Name: Page creation time #2
Description: Just paste it into the header of the PHP file you wish to show it on, and it will display you how long it took to load that page.
Comment: (none)
Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009
|
<? php
FUNCTION getmicrotime(){
LIST($usec, $sec) = EXPLODE(" ",MICROTIME());
RETURN ((float)$usec + (float)$sec);
}
$time_start = getmicrotime();
FOR ($i=0; $i <1000; $i++){
}
$time_end = getmicrotime();
$time = $time_end - $time_start;
$time = ROUND($time,4);
ECHO "This page took $time seconds to load.";
?> |