update : 2015.11.03
php.shukuma.com

검색:
 
 
Delay execution in microseconds

usleep

(PHP 4, PHP 5)

usleepDelay execution in microseconds

설명

void usleep ( int $micro_seconds )

Delays program execution for the given number of microseconds.

인수

micro_seconds

Halt time in microseconds. A microsecond is one millionth of a second.

반환값

값을 반환하지 않습니다.

예제

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";

?>

위 예제의 출력:

11:13:28
11:13:30

참고