测试PHP代码运行速度的函数
[08-23 22:10:15] 来源:http://www.duoxue8.com PHP教程 阅读:149次通常为了优化代码,我们需要一种可以测试代码运行时间的方法,从而来选择最优的代码。
下面的函数可以测试运行代码所需的时间:
function ss_timing_start ($name = default) {
global $ss_timing_start_times;
$ss_timing_start_times[$name] = explode( , microtime());
}
function ss_timing_stop ($name = default) {
global $ss_timing_stop_times;
$ss_timing_stop_times[$name] = explode(, microtime());
}
function ss_timing_current ($name = default) {
global $ss_timing_start_times, $ss_timing_stop_times;
if (!isset($ss_timing_start_times[$name])) {
return 0;
}
if (!isset($ss_timing_stop_times[$name])) {
$stop_time = explode(, microtime());
}
else {
$stop_time = $ss_timing_stop_times[$name];
}
$current = $stop_time[1] - $ss_timing_start_times[$name][1];
$current += $stop_time[0] - $ss_timing_start_times[$name][0];
return $current;
}
现在可以轻松地检查任何一段代码的执行时间了,甚至我们可以同时使用多个计时器,只需在使用上述的几个函数时设定不同的参数作为计时器的名称就可以了。。。现在知道 如何测试PHP代码运行速度的函数了吧。
测试PHP代码运行速度的函数 结束。
- ·上一个:php中有$_request与$_post、$_get 区别
- 测试PHP代码运行速度的函数
- › 测试PHP代码运行速度的函数
- 在百度中搜索相关文章:测试PHP代码运行速度的函数
- 在谷歌中搜索相关文章:测试PHP代码运行速度的函数
- 在soso中搜索相关文章:测试PHP代码运行速度的函数
- 在搜狗中搜索相关文章:测试PHP代码运行速度的函数