3

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

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

如何将持续时间(以微秒为单位)作为整数

这不起作用:

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

1 回答 1

4

如果您希望将微秒作为整数:

$duration = round(($endTime - $startTime) * 1000000)
于 2012-03-20T19:59:26.280 回答