你可能知道,在基准属性中有一个名为elapsed_time()的函数。参数如下:
elapsed_time([$point1 = ''[, $point2 = ''[, $decimals = 4]]])
我正在尝试将值设置为值为 2 的第 3 个参数。这是我的简单代码:
echo $this->benchmark->elapsed_time('', '', 2);
但它仍然默认返回,点后面有四位小数
。你能告诉我为什么它不起作用吗?非常感谢您的帮助!我真的很感激。
你需要
设置基准,然后它就可以工作了。在您的示例中,没有起点和终点,因此忽略第三个参数。
所以正确的用法是:
<?php $this->benchmark->mark('startpoint');?>
//your code
<?php $this->benchmark->mark('endpoint');?>
<?php echo $this->benchmark->elapsed_time('startpoint', 'endpoint', 2);?>