用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

一个php计算程序运行时间的类

时间:2015-01-23  来源:西部数据  作者:西部数据

一个可以统计你程序的运行时间长知的php类,实例代码如下:

  1. class Timer {   
  2.     private $StartTime = 0;//程序运行开始时间 
  3.     private $StopTime  = 0;//程序运行结束时间 
  4.     private $TimeSpent = 0;//程序运行花费时间 
  5.     function start(){//程序运行开始 
  6.         $this->StartTime = microtime();   
  7.     }   
  8.     function stop(){//程序运行结束 
  9.         $this->StopTime = microtime();   
  10.     }   
  11.     function spent(){//程序运行花费的时间 
  12.         if ($this->TimeSpent) {   
  13.             return $this->TimeSpent;   
  14.         } else { 
  15.          list($StartMicro$StartSecond) = explode(" "$this->StartTime); 
  16.          list($StopMicro$StopSecond) = explode(" "$this->StopTime); 
  17.             $start = doubleval($StartMicro) + $StartSecond
  18.             $stop = doubleval($StopMicro) + $StopSecond
  19.             $this->TimeSpent = $stop - $start
  20.             return substr($this->TimeSpent,0,8)."秒";//返回获取到的程序运行时间差 
  21.         }   
  22.     }   
  23. }   
  24. $timer = new Timer();   
  25. $timer->start(); 
  26. //...程序运行的代码 
  27. $timer->stop(); 
  28. echo "程序运行时间为:".$timer->spent(); 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门