php利用自定义函数编写程序,计算页面脚本的运行时间
时间: 2024-05-29 21:08:25 浏览: 33
PHP的microtime()函数可以返回当前时间的微秒数,结合页面脚本开始和结束的时间戳,可以计算出页面脚本的运行时间。示例代码如下:
$start_time = microtime(true);
// 页面脚本的代码
$end_time = microtime(true);
$run_time = $end_time - $start_time;
echo "页面脚本的运行时间为:".round($run_time, 4)."秒";
阅读全文