编程语言
首页 > 编程语言> > php-如何获取持续时间(以微秒为单位)

php-如何获取持续时间(以微秒为单位)

作者:互联网

我想测量我的PHP脚本的指定部分需要多长时间,例如

$startTime = microtime(true);
//some operations which needs 0.1 to 100 seconds to run
$endTime = microtime(true);

如何获得以毫秒为单位的持续时间(整数)?

这不起作用:

$duration = (int)($endTime - $startTime);

解决方法:

如果您希望微秒为整数:

$duration = round(($endTime - $startTime) * 1000000)

标签:php-5-3,microtime,php,time
来源: https://codeday.me/bug/20191101/1984469.html