طريقه اخرى :
كود PHP:
function timer($start = 0, $digits = 8)
{
list($m, $s) = explode(' ', microtime());
return round((double)$s + (double)$m - $start, $digits);
}
في اعلى الصفحة
كود PHP:
$start = timer();
في ادناها
كود PHP:
$runtime= timer($start);
print"Loaded in" .$runtime." Seconds".;//8 digits