How can I make a php script to wait or pause for a few seconds?
Is there a command or function in PHP to act as a timer?
-
How can I make a php script to wait or pause for a few seconds?
smallwei
How can I make a php script to wait or pause for a few seconds?
Is there a command or function in PHP to act as a timer?
smallwei 6:32 pm on October 26, 2009
There are two ways (functions) to make a php script wait:
sleep(seconds);or
usleep(milliseconds);