php 计算函数执行时间的类的解决办法

内容摘要
这篇文章主要为大家详细介绍了php 计算函数执行时间的类的简单示例,具有一定的参考价值,可以用来参考一下。

对一个用于计算函数执行时间的php类c_Timer代码对此感兴趣的朋友
文章正文

这篇文章主要为大家详细介绍了php 计算函数执行时间的类的简单示例,具有一定的参考价值,可以用来参考一下。

对一个用于计算函数执行时间的php类c_Timer代码对此感兴趣的朋友,看看idc笔记做的技术笔记!

<?
/**
 * 一个用于计算函数执行时间的php类c_Timer代码
 *
 * @param 
 * @author 五一二笔记网: www.idcnote.com
 **/
class  c_Timer  { 
	var  $t_start  =  0; 
	var  $t_stop  =  0; 
	var  $t_elapsed  =  0; 
	function start(){$this->t_start = microtime();}
	function stop(){$this->t_stop = microtime();}
	function elapsed(){ 
		if ($this->t_elapsed){ 
				return $this->t_elapsed; 
		}else{ 
			$start_u  =  substr($this->t_start,0,10);   
			$start_s  =  substr($this->t_start,11,10); 
			$stop_u    =  substr($this->t_stop,0,10);     
			$stop_s    =  substr($this->t_stop,11,10); 
			$start_total  =  doubleval($start_u)  +  $start_s; 
			$stop_total    =  doubleval($stop_u)  +  $stop_s;
			$this->t_elapsed  =  $stop_total  -  $start_total;
			return  $this->t_elapsed; 
		} 
	} 
};
/*  Here's  an  example  usage:
		$timer  =  new  c_Timer;
		$timer->start(); 
		echo  "<hr>"; 
		$timer->stop();
		echo  $timer->elapsed();
*/ 
/***   来自php教程(www.idcnote.com)   ***/

注:关于php 计算函数执行时间的类的简单示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!