Load Time
Load Time
--------------------------------------------------------------------------------
This will display the amount of time it takes the page to load.
<?
$lbt = microtime(); // start
$lba = explode(" ", $lbt);
$lbt = $lba[0] + $lba[1];
$let = microtime();// end
$lea = explode(" ", $let);
$let = $lea[0] + $lea[1];
$total = $let - $lbt; //lil math
echo "loaded in " .round($total, 5) ."seconds";
?>
- Add more place values by changing the "5"
|