php性能microtime实际值

时间:2012-05-10 19:45:44

标签: php performance

  

可能重复:
  Why is this microtime showing up weird in PHP

我使用此代码来检查脚本的性能。

$start_time = microtime(1);
// execution some code
$cpu_time = microtime(1) - $start_time;

echo $ cpu_time的输出类似于3.0994415283203E-6 如何在屏幕上将其显示为真实值,如0.000000003099?是0秒,执行速度很快,对吗? :)

3 个答案:

答案 0 :(得分:3)

使用number_format

像:

number_format($microtime, 15);

答案 1 :(得分:3)

对:) 尝试使用number_format()函数:

echo number_format($cpu_time, 12);

答案 2 :(得分:1)

使用bcsub

示例

echo  bcsub ( microtime ( 1 ), $start_time, 16 );