网站地图    收藏   

主页 > php专栏 > php日期 >

php 代码运行时间查看类 - php日期

来源:自学PHP网    时间:2014-11-30 11:50 作者: 阅读:

[导读] classRunTime 页面执行时间类{private$starttime; 页面开始执行时间private$stoptime; 页面结束执行时间private$spendtime; 页面执行花费时间functiongetmicrotime() 获取返回当前微秒数的浮...

php 代码运行时间查看类

  1. class RunTime//页面执行时间类  
  2. {  
  3.  private $starttime;//页面开始执行时间  
  4.  private $stoptime;//页面结束执行时间  
  5.  private $spendtime;//页面执行花费时间  
  6.  function getmicrotime()//获取返回当前微秒数的浮点数  
  7.  {  
  8.   list($usec,$sec)=explode(" ",microtime());  
  9.   return ((float)$usec + (float)$sec);  
  10.  }  
  11.  function start()//页面开始执行函数,返回开始页面执行的时间  
  12.  {  
  13.   $this->starttime=$this->getmicrotime();  
  14.  }  
  15.  function end()//显示页面执行的时间  
  16.  {  
  17.   $this->stoptime=$this->getmicrotime();  
  18.   $this->spendtime=$this->stoptime-$this->starttime;  
  19.   //return round($this->spendtime,10);  
  20.  }  
  21.  function display() 
  22.  { 
  23.      //$this->end(); 
  24.      echo "<p>运行时间:".round($this->spendtime,10)."秒</p>"
  25.  } 
  26. }  
  27. /*调用方法    
  28. $timer=new Runtime();  
  29. $timer->start();  
  30.  
  31. $timer->end(); 
  32. $timer->display(); 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论