Home >Backend Development >PHP Tutorial >PHP page execution time calculation code

PHP page execution time calculation code

巴扎黑
巴扎黑Original
2016-11-22 16:52:561027browse

<? 
$pagestartime=microtime(); 
?> 
<!--网页内容 start--> 
网页内容 
... 
... 
<!--网页内容 end--> 
<? 
$pageendtime = microtime(); 
$starttime = explode(" ",$pagestartime); 
$endtime = explode(" ",$pageendtime); 
$totaltime = $endtime[0]-$starttime[0]+$endtime[1]-$starttime[1]; 
$timecost = sprintf("%s",$totaltime); 
echo "页面运行时间: $timecost 秒"; 
?>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn