咯拉无米 发表于 2010-4-29 19:57:09

求php 页面执行速度显示代码

像dz底部的这种
我需要在一个自己的php页面实现,请教高手怎么做

zyypp 发表于 2010-4-29 21:07:03

在php文件头插入这个[*]$runtime= new runtime;$runtime->start();class runtime{var $StartTime = 0;var $StopTime = 0;function get_microtime(){list($usec,$sec)=explode(' ',microtime());return((float)$usec+(float)$sec);}function start(){$this->StartTime=$this->get_microtime();}function stop(){$this->StopTime=$this->get_microtime();}function spent(){return round(($this->StopTime-$this->StartTime),6);}}复制代码然后在要显示的地方插入[*]$runtime->stop();
[*]echo 'Processed in ',$runtime->spent(),' second(s).';复制代码

咯拉无米 发表于 2010-4-29 21:11:41

每次都是在我需要的时候你出现了

zyypp 发表于 2010-4-29 21:13:55

我刚好睡醒起来吃饭 嘿嘿

taian 发表于 2010-5-3 15:37:56


lol.gif

lol.gif

lol.gif


[ 本帖最后由 taian 于 2010-5-23 22:38 编辑 ]

wzwen 发表于 2010-5-3 16:01:47

已经删除了

cosence 发表于 2010-5-3 18:30:06

不错!

微笑着吃饭 发表于 2010-5-4 14:59:57

mark
页: [1]
查看完整版本: 求php 页面执行速度显示代码