(PHP 4, PHP 5, PHP 7)
usleep — Delay execution in microseconds
$microseconds
) : voidDelays program execution for the given number of microseconds.
microseconds
Halt time in microseconds. A microsecond is one millionth of a second.
Notă: On Windows, the system may sleep longer that the given number of microseconds, depending on the hardware.
Nu este întoarsă nici o valoare.
Example #1 usleep() example
<?php
// Current time
echo date('h:i:s') . "\n";
// wait for 2 seconds
usleep(2000000);
// back!
echo date('h:i:s') . "\n";
?>
Exemplul de mai sus va afișa:
11:13:28 11:13:30