Главная > PHP > php: время выполнения скрипта в секундах

php: время выполнения скрипта в секундах

В начале:

function get_sec(){
	$mtime=microtime();
	$mtime=explode(" ",$mtime);
	$mtime=$mtime[1]+$mtime[0];
	return $mtime;
}
$start_time=get_sec();

В конце:

$exec_time=get_sec()-$start_time;
printf("<!--Execution time %f sec.-->",$exec_time);

http://programmerz.ru/post/execute_time.html

Categories: PHP Tags:
Похожие публикации