I was having a problem with the bytes appended to the output, using the given example.
<?php
...
HttpResponse::setFile('sheet.pdf');
HttpResponse::send();
?>
Content-Length mismatch: Response Header claimed x bytes, but server sent x+5 bytes.
Adding an exit statement solved this problem.
HttpResponse::send
(PECL pecl_http:0.10.0-1.5.5)
HttpResponse::send — Send response
Descrição
static
bool HttpResponse::send
([ bool $clean_ob = TRUE
] )
Finally send the entity.
A successful caching attempt will exit PHP, and write a log entry if the Definições INI http.log.cache is set. Veja a Definições INI http.force_exit para saber o que "exits" significa.
Parâmetros
- clean_ob
-
whether to destroy all previously started output handlers and their buffers
Valor Retornado
Retorna TRUE em caso de sucesso ou FALSE em falhas.
Exemplos
Exemplo #1 A HttpResponse::send() example
<?php
HttpResponse::setCache(true);
HttpResponse::setContentType('application/pdf');
HttpResponse::setContentDisposition("$user.pdf", false);
HttpResponse::setFile('sheet.pdf');
HttpResponse::send();
?>
User Contributed Notes
HttpResponse::send
HttpResponse::send
barnett dot [NOSPAM]thomas at gmail dot com
26-May-2008 01:31
26-May-2008 01:31

HttpResponse::redirect