PHP程序来计算PHP脚本的执行时间
要计算PHP脚本的执行时间,代码如下-
示例
<?php$start = microtime(true);
$val=1;
for($i = 1; $i <=1500; $i++)
{
$val++;
}
$end = microtime(true);
$exec_time = ($end - $start);
echo "The execution time of the PHP script is : ".$exec_time." sec";
?>
输出结果
The execution time of the PHP script is : 1.69 sec
“ microtime”功能可用于检查PHP脚本完全执行所花费的时间。当代码开始执行时,会记录时间,一旦代码完成,就会生成另一个时间戳,结束时间和开始时间之间的差是脚本完成其执行所花费的时间。
以上是 PHP程序来计算PHP脚本的执行时间 的全部内容, 来源链接: utcz.com/z/360048.html