计算程序运行时间:
首先了解下 microtime 这个函数:
microtime() 函数返回当前 Unix 时间戳和微秒数。
语法:
microtime(get_as_float)
参数: get_as_float
描述: 如果给出了 get_as_float 参数并且其值等价于 TRUE,该函数将返回一个浮点数。
说明:
PHP函数microtime()仅在支持 gettimeofday() 系统调用的操作系统下可用。
如果调用时不带可选参数,本函数以 "msec sec" 的格式返回一个字符串,
其中 sec 是自 Unix 纪元(0:00:00 January 1, 1970 GMT)起到现在的秒数,msec 是微秒部分。
字符串的两部分都是以秒为单位返回的。
计算方法:
<?php
$stime=microtime(true); #获取程序开始执行的时间
#你写的php代码
$etime=microtime(true); #获取程序执行结束的时间
$total=$etime-$stime; #计算差值
echo "<br />{$total} times";
?>