timer.inc.php

来自「套中小型企业网站建设」· PHP 代码 · 共 60 行

PHP
60
字号
<?php
//====================================================
//		FileName:timer.inc.php
//		Summary: 定时器类
//		Author: ice_berg16(寻梦的稻草人)
//		CreateTime: 2004-10-10     
//		LastModifed:2004-10-10 
//		(c) copyright 2004 ice_berg16@163.com
//====================================================
class timer 
{
	var $startTime;	//起始时间
	var $endTime;	//结束时间

	//==========================================
	// 函数: timer()
	// 功能: constructor
	// 参数: no
	//==========================================
	function timer() 
	{
		$this->start();
	}

	//==========================================
	// 函数: start()
	// 功能: 启动定时器
	// 参数: no
	//==========================================
	function start() 
	{
		$this->startTime = $this->getMicroTime();
	}
	
	//==========================================
	// 函数: getExecuteTime()
	// 功能: 返回定时器的计时秒数
	// 参数: no
	//==========================================

	function getExecuteTime() 
	{
		$this->endTime = $this->getMicroTime();
		$excuteTime = ($this->endTime - $this->startTime) * 1000;
		return round($excuteTime, 4);
	}
	//==========================================
	// 函数: getMicroTime()
	// 功能: 返回当前时间的毫秒值
	// 参数: no
	//==========================================
	function getMicroTime()
	{ 
		$timer = explode(" ",microtime()); 
		return ((float)$timer[0] + (float)$timer[1]); 
    } 

}
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?