array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.hrtime.php', 1 => 'hrtime', 2 => 'Get the system\'s high resolution time', ), 'up' => array ( 0 => 'ref.misc.php', 1 => 'Функції Misc.', ), 'prev' => array ( 0 => 'function.highlight-string.php', 1 => 'highlight_string', ), 'next' => array ( 0 => 'function.ignore-user-abort.php', 1 => 'ignore_user_abort', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/misc/functions/hrtime.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 7 >= 7.3.0, PHP 8)
hrtime — Get the system's high resolution time
Returns the system's high resolution time, counted from an arbitrary point in time. The delivered timestamp is monotonic and can not be adjusted.
Returns an array of integers in the form [seconds, nanoseconds], if the
parameter as_number
is false. Otherwise the nanoseconds
are returned as int (64bit platforms) or float
(32bit platforms).
Returns false
on failure.
Приклад #1 hrtime() usage
<?php
echo hrtime(true), PHP_EOL;
print_r(hrtime());
?>
Поданий вище приклад виведе щось схоже на:
10444739687370679 Array ( [0] => 10444739 [1] => 687464812 )