Note that in the example when it says "Send file with approximately 20 kbyte/s." that is only an upper bound. The file could still be sent at a lesser speed (e.g. 10 kb/s) if the client, network, or server, cannot handle the amount.
(PECL pecl_http >= 0.10.0)
http_throttle — Aceleración de HTTP
$sec
[, int $bytes
= 40960
] )Establece el retardo de la aceleración, y el tamaño de la memoria de envío.
Nota: Esta función debería ser utilizada en conjunción con http_send_data(), http_send_file() y http_send_stream().
Nota: Proporciona un mecanismo básico de regulación, que hará rendir el proceso o subproceso actual hasta que la entidad haya sido completamente enviada.
Nota:
Esto puede no funcionar como se espera en el(los) siguiente(s) SAPI(s): FastCGI.
sec
segundos de espera entre el envío de cada bloque
bytes
tamaño en bytes de los bloques
Ejemplo #1 Ejemplo de http_throttle()
Enviar un fichero a aproximadamente 20 kbyte/s.
<?php
// ~ 20 kbyte/s
# http_throttle(1, 20000);
# http_throttle(0.5, 10000);
http_throttle(0.1, 2000);
http_send_file('document.pdf');
?>
Note that in the example when it says "Send file with approximately 20 kbyte/s." that is only an upper bound. The file could still be sent at a lesser speed (e.g. 10 kb/s) if the client, network, or server, cannot handle the amount.