27 mar 2008

Obliczenie czasu ładowania pliku ze wskazanego URLa

$url = 'http://www.moa.waw.pl/'

function getmicrodate(){
    $t = microtime();
    $t = explode(' ',$t);
    $total = $t[0]+$t[1];
    return $total;
}

$loadtime_before = getmicrodate();
$xml = @file_get_contents($url);
$loadtime_after = getmicrodate();
echo round(($loadtime_after-$loadtime_before),2);