update : 2015.11.03
php.shukuma.com

검색:
 
 
HTTP throttling

http_throttle

(PECL pecl_http >= 0.10.0)

http_throttleHTTP throttling

설명

void http_throttle ( float $sec [, int $bytes = 40960 ] )

Sets the throttle delay and send buffer size.

Note: 이 함수는 다음 함수와 함께 사용해야 합니다: http_send_data(), http_seld_file() 그리고 http_send_stream().

Note: 엔티티를 완전히 전송할 때까지 현재 프로세스나 쓰레드에 양보하는 간단한 속도제어를 제공합니다.

Note:

다음 SAPI에서는 정상 작동하지 않을 수 있습니다: FastCGI.

인수

sec

seconds to sleep after each chunk sent

bytes

the chunk size in bytes

예제

Example #1 A http_throttle() example

Send file with approximately 20 kbyte/s.

<?php
// ~ 20 kbyte/s
# http_throttle(1, 20000);
# http_throttle(0.5, 10000);
http_throttle(0.12000);
http_send_file('document.pdf');
?>

참고