php微秒

时间:2009-04-21 14:43:00

标签: php datetime

我正在使用
echo date('H:i:s')." this step time\n";
 为了知道每个功能需要多长时间才能执行。

我怎么知道微秒的时间?

3 个答案:

答案 0 :(得分:9)

添加,有PHP的microtime()功能,可以像这样使用:

$time_start = microtime(true);

//do stuff here

$time_end = microtime(true);
$time = $time_end - $time_start;

echo "It took $time seconds\n";

答案 1 :(得分:4)

u  Microseconds (added in PHP 5.2.2)

请查看 http://no.php.net/manual/en/function.date.php了解详情。

答案 2 :(得分:1)

以毫秒为单位使用'u'标记。