usleep() 함수는 실행 중인 현재 스크립트를 지정된 요구 사항에 따라 몇 마이크로초 및 밀리초 동안 정지시키는 데 사용되는 PHP 표준 라이브러리의 내장 함수입니다. 함수의 시공간 복잡성을 일정하게 만드는 PHP usleep 함수에 대한 특정 반환 유형이 없습니다. PHP usleep 함수는 PHP usleep 함수에서 해당 매개변수가 함수에서 매개변수로 전달될 때까지 적절한 방법으로 지정해야 한다는 사실만 다를 뿐 sleep 함수처럼 작동합니다.
광고 이 카테고리에서 인기 있는 강좌 PHP 개발자 - 전문 분야 | 8개 코스 시리즈 | 3가지 모의고사무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
구문:
usleep(microseconds)
구문 흐름은 지정된 매개변수가 함수에서 전달되어야 하고 요구 사항에 따라 함수를 사용할 수 있게 되는 방식입니다.
함수에서 매개변수를 전달하는 것은 필수 접근 방식입니다. 반환형은 없고 앞서 언급한 대로 실행 중인 함수를 일정 시간 동안 정지시키는 것뿐입니다.
usleep function()은 실행 중인 전체 프로세스를 몇 마이크로초 또는 밀리초 동안 정지시키는 데 사용되는 PHP에 내장된 함수입니다. 다음과 같이 usleep 기능의 작동 흐름을 살펴보겠습니다.
아래 예시는 다음과 같습니다.
This program demonstrates the usleep() function in PHP which is used for representing the delay in execution while informing the end user of the time with the specified parameter to the function with 8 milliseconds delay as shown in the output.
Code:
<!DOCTYPE html> <html> <body> <?php echo date('hr:in:sec') . "<br>"; usleep(800000); echo date('hr:in:sec'); ?> </body> </html>
Output:
This program demonstrates the difference in both the usleep() and sleep() function with the difference in CPU circle consumption. This takes input as for date in sleep() mode for 5 seconds and then start again once the halt completes for 3 seconds and behaves merely different as compared to usleep as shown in the output.
Code:
<?php echo date('h:i:s') . "\n"; sleep(5); echo date('hr:in:sec') . "\n"; ?>
Output:
This program demonstrates the difference in usleep with time_nanosecond() function containing difference with seconds and nanoseconds almost like usleep() and sleep() function as shown in the output.
Code:
<!DOCTYPE html> <html> <body> <?php if (time_nanosleep(3,5000000) === true) { echo "nanosleep time for 3 or 5 seconds."; } ?> </body> </html>
Output:
This program demonstrates the difference between the PHP usleep() function and time_sleep_until() function which is used for getting the values of time in boolean format as shown in the output.
Code:
<?php var_dump(time_sleep_until(time()+1)); var_dump(time_sleep_until(microtime(false)+0.8)); ?>
Output:
Note: If the time_sleep_until() function compared to sleep function will be used then it will return value as false when given a negative value.PHP usleep() function in PHP is a function which is used for making the program in execution to halt for analyzing the fault or may be for some requirement changes but is useful for programmers as it can be handled accordingly in PHP and is a great source of manipulation with scripts in PHP.
위 내용은 PHP 사용의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!