hrtime

(PHP 7 >= 7.3.0, PHP 8)

hrtime獲取系統(tǒng)的高精度時間

說明

hrtime(bool $get_as_number = false): mixed

從任意時間點開始統(tǒng)計,返回系統(tǒng)的高精度時間(high resolution time)。 獲取的時間戳為單調(diào)時間,無法被用戶調(diào)整。

參數(shù)

get_as_number

array 還是數(shù)字返回高精度時間。

返回值

參數(shù) get_as_number 為 false 時,返回的整型數(shù)組格式為 [seconds, nanoseconds]。 否則會以 int (64 位平臺)或 float (32 位平臺)返回奈秒(nanoseconds)。

范例

示例 #1 hrtime() 的用法

<?php
echo hrtime(true), PHP_EOL;
print_r(hrtime());
?>

以上例程的輸出類似于:

10444739687370679
Array
(
    [0] => 10444739
    [1] => 687464812
)

參見