hrtime
(PHP 7 >= 7.3.0, PHP 8)
hrtime — Get the system's high resolution time
Descrizione
Returns the system's high resolution time, counted from an arbitrary point in time.
The delivered timestamp is monotonic and can not be adjusted.
Elenco dei parametri
-
as_number
-
Whether the high resolution time should be returned as array
or number.
Valori restituiti
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.
Esempi
Example #1 hrtime() usage
<?php
echo hrtime(true), PHP_EOL;
print_r(hrtime());
?>
Il precedente esempio visualizzerĂ
qualcosa simile a:
10444739687370679
Array
(
[0] => 10444739
[1] => 687464812
)