noganno
12/2/2013 - 8:17 AM

Вычисление времени работы скрипта.php

$execution_time = microtime(); # начало отсчёта

# Ваш код

$execution_time = microtime() - $execution_time;
$execution_time = sprintf('It took %.5f sec', $execution_time);