function getmicrotime()
{
list($usec, $sec) = explode("",microtime());
return ((float)$usec + (float)$sec);
}
$time = getmicrotime();
#
# Здесь тестируемый код
#
echo "Время прошло: ".getmicrotime() - $time . " секунд";
function getmicrotime()
{
list($usec, $sec) = explode("",microtime());
return ((float)$usec + (float)$sec);
}
$time = getmicrotime();
#
# Здесь тестируемый код
#
echo "Время прошло: ".getmicrotime() - $time . " секунд";
[code]$stime = microtime(true);
Скрипт
$etime = microtime(true);
echo 'Ген.: '. round($etime - $stime, 5) .' сек.';[/code]
Велосипедисты
Зачем?
microtime(TRUE)-$_SERVER['REQUEST_TIME_FLOAT']
Вернёт тебе время выполнения скрипта... Кстати копипастить из мануала, заменив microtime_float на getmicrotime - есть ли в этом смысл?