1. 코드를 최적화할 때 스크립트의 실행 시간은 매우 중요한 고려 사항입니다. 그러면 PHP를 사용하여 PHP 스크립트의 실행 시간을 계산하는 방법은 무엇입니까?
다음은 누구에게나 추천하는 유용한 클래스입니다.
runtime.class.php
/**
* PHP 스크립트 실행 시간 계산
*/
class Runtime
{
var $StartTime = 0;
var $StopTime = 0;
function get_microtime()
{
list($usec, $sec) =explosion(' ', microtime() ; get_microtime();
}
함수 stop()
{
$this->StopTime = $this->get_microtime();
}
함수 소비($echo =false,$title='')
{
$spent = sprintf('%.4f',round(($this->StopTime - $this->StartTime) * 1000, 1)/ 1000 ); 🎜> }
}
functionclear()
{
$this->StartTime = 0;
$this->StopTime = 0;
}
}
테스트 코드:
#테스트 스크립트 코드
$runtime= new Runtime;
$runtime->start();
$a = 0 ;
for($i=0; $i<100000; $i++)
{
$a *= $i;
$runtime->stop();
$ sent_time = $runtime->spent($echo=true, 'test script');$runtime->clear();
테스트 결과:
위 내용은 PHP와 스크립트 내용을 포함한 PHP 스크립트 실행시간 계산 수업을 소개하고 있는데, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.