当前位置:Gxlcms > PHP教程 > php计算脚本执行时间

php计算脚本执行时间

时间:2021-07-01 10:21:17 帮助过:18人阅读

//修改php的默认时区
date_default_timezone_get('PRC');

//使用微妙计算php脚本执行时间echo microtime(); echo" 返回当前unix时间戳和微秒数";
echo"
"
; classTimer{private$startTime; private$stopTime; function__construct(){$this->startTime=0; $this->stopTime=0; } functionstart(){$this->startTime=microtime(true); } functionstop(){$this->stopTime=microtime(true); } functionspent(){return round(($this->stopTime - $this->startTime),4); } } $timer= new Timer(); $timer->start(); usleep(1000); $timer->stop(); echo"执行该脚本用时".$timer->spent()."
";

以上就介绍了php 计算脚本执行时间,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行