void usleep ( int microseconds ) pauses script execution : usleep « Utility Function « PHP
- PHP
- Utility Function
- usleep
void usleep ( int microseconds ) pauses script execution
<?
usleep(4000000);
echo "Done\n";
?>
Related examples in the same category