(PHP 7 >= 7.3.0, PHP 8)
hrtime — 获取系统的高精度时间
$as_number
= false
): array|int|float|false
从任意时间点开始统计,返回系统的高精度时间(high resolution time)。 获取的时间戳为单调时间,无法被用户调整。
as_number
以 array 还是数字返回高精度时间。
参数 as_number
为 false 时,返回的整型数组格式为
[seconds, nanoseconds]。否则会以 int (64 位平台)或
float (32 位平台)返回奈秒(nanoseconds)。失败时返回 false
。
示例 #1 hrtime() 的用法
<?php
echo hrtime(true), PHP_EOL;
print_r(hrtime());
?>
以上例程的输出类似于:
10444739687370679 Array ( [0] => 10444739 [1] => 687464812 )