PHP获取PHP执行的时间

php获取PHP执行的时间

<pre>
//程序运行时间
$starttime = explode(' ',microtime());


//代码区域

 

 

//程序运行时间
$endtime = explode(' ',microtime());
$thistime = $endtime[0]+$endtime[1]-($starttime[0]+$starttime[1]);
$thistime = round($thistime,3);
echo "本网页执行耗时:".$thistime." 秒。".time();
exit();
</pre>

posted @ 2019-11-14 13:04  newmiracle宇宙  阅读(1254)  评论(0编辑  收藏  举报