Snippet Name: Page creation time
Description: Tells you how many seconds it took to load the page.
Comment: (none)
Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009
|
<?PHP
/* This part of the script goes at the top of your page */
$starttime = EXPLODE(' ', MICROTIME());
$starttime = $starttime[1] + $starttime[0];
?>
<?PHP
/* This part of the script goes where you want the load time to be displayed */
$mtime = EXPLODE(' ', MICROTIME());
$totaltime = $mtime[0] + $mtime[1] - $starttime;
PRINTF('Page loaded in %.3f seconds.', $totaltime);
?> |