求php 页面执行速度显示代码
像dz底部的这种我需要在一个自己的php页面实现,请教高手怎么做 在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).';复制代码 每次都是在我需要的时候你出现了 我刚好睡醒起来吃饭 嘿嘿
lol.gif
lol.gif
lol.gif
[ 本帖最后由 taian 于 2010-5-23 22:38 编辑 ] 已经删除了 不错! mark
页:
[1]