코드 복사 코드는 다음과 같습니다.
//date:2011-08-05
class RunTime//페이지 실행 시간 클래스
{
private $starttime;//페이지 시작 실행 시간
private $stoptime;//페이지 종료 실행 시간
private $spendtime;//페이지 실행 소요 시간
function getmicrotime ()/ /현재 마이크로초를 반환하는 부동 소수점 숫자 가져오기
{
list($usec,$sec)=explode(" ",microtime())
return ((float)$usec (float)$ sec)
}
function start()//페이지에서 함수 실행을 시작하고 페이지 실행이 시작되는 시간을 반환합니다.
{
$this->starttime=$ this->getmicrotime();
}
function end()//페이지 실행 시간 표시
{
$this->stoptime=$this->getmicrotime()
$this->spendtime =$this->stoptime-$this->starttime;
//return round($this->spendtime,10)
}
함수 표시 ()
{
//$this->end();
echo "
실행 시간:".round($this->spendtime,10)."초 p>";
}
}
/*호출 메서드
$timer=new Runtime();
$timer->start();
위 내용은 PHP 코드 내용을 포함하여 PHP 코드 실행시간 보기 클래스 코드 공유를 소개하고 있으니, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.