⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timer.inc.php

📁 套中小型企业网站建设
💻 PHP
字号:
<?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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -