在 PHP 中启动和停止一个定时器

Minahil Noor 2021年2月25日 2020年12月31日
在 PHP 中启动和停止一个定时器

本文将介绍在 PHP 中启动和停止定时器的方法。

在 PHP 中使用 microtime() 函数来启动和停止定时器

我们可以使用 microtime() 函数来启动和停止 PHP 中的定时器。microtime() 函数在调用时以微秒为单位记录时间。我们将计算停止时间和启动定时器的时间差,从而得到执行时间。使用该函数的正确语法如下。

microtime($getAsFloat);

microtime() 函数只有一个参数。其参数的详细情况如下。

变量 说明
$getAsFloat 布尔型。如果设置为 True,则函数以字符串的形式返回时间,而不是以浮点数形式返回。

该函数以微秒为单位返回时间。下面的程序显示了我们在 PHP 中使用 microtime() 函数来启动和停止计时器的方法。

<?php
$time_pre = microtime(true);
echo("This line will be executed.\n");
$time_post = microtime(true);
$exec_time = $time_post - $time_pre;
echo("The execution time is:\n");
echo($exec_time);
?>

输出:

This line will be executed.
The execution time is:
2.6941299438477E-5

相关文章 - PHP Timer