Просмотр поста

.
elkol

Мерсисайдец, В head.php (В самом начале)

$begin = microtime();
$arrbegin = explode(" ", $begin);
$allbegin = $arrbegin[1] + $arrbegin[0];

В end.php (До </body></html>)
$stop = microtime();  
$arrend = explode(" ",$stop);  
$allend = $arrend[1] + $arrend[0];  
$alltime = $allend - $allbegin;   
$format = "Ген. %f сек."; 
printf($format,$alltime);