This blog shows how to find how long your site takes to load.
$starttime = microtime();$startarray = explode(" ", $starttime);$starttime = $startarray[1] + $startarray[0];
$endtime = microtime();$endarray = explode(" ", $endtime);$endtime = $endarray[1] + $endarray[0];$totaltime = $endtime - $starttime;$totaltime = round($totaltime,10);echo "Seconds To Load: ";printf ("%f\n", $totaltime);