usleep
(PHP 4, PHP 5)
usleep — Delay execution in microseconds
Descrierea
void usleep
( int $micro_seconds
)
Delays program execution for the given number of micro seconds.
Parametri
- micro_seconds
-
Halt time in micro seconds. A micro second is one millionth of a second.
Valorile întroarse
Nu este întoarsă nici o valoare.
Istoria schimbărilor
Versiunea | Descriere |
---|---|
5.0.0 | This function now works on Windows systems. |
Exemple
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