(PHP 7 >= 7.3.0, PHP 8)
hrtime — 獲取系統(tǒng)的高精度時間
從任意時間點開始統(tǒng)計,返回系統(tǒng)的高精度時間(high resolution time)。 獲取的時間戳為單調(diào)時間,無法被用戶調(diào)整。
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 )