$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);
27 mar 2008