downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

http_send_last_modified> <http_send_data
[edit] Last updated: Fri, 07 Jun 2013

view this page in

http_send_file

(PECL pecl_http >= 0.1.0)

http_send_fileEnviar un fichero

Descripción

bool http_send_file ( string $file )

Envía un fichero con soporte para (múltiples) peticiones de rango.

El comportamiento de esta función depende de las siguiente opción INI: http.send.not_found_404 y http.log.not_found.

Si la opción INI http.send.not_found_404 está habilitada y la opción INI http.log.not_found apunta a un fichero con permisos de escritura, se almacenará un registro en caso de que no se pudiera encontrar el fichero file.

Parámetros

file

fichero a enviar

Valores devueltos

Devuelve TRUE en caso de éxito o FALSE en caso de error.

Ejemplos

Ejemplo #1 A http_send_file() example

<?php
http_send_content_disposition
("document.pdf"true);
http_send_content_type("application/pdf");
http_throttle(0.12048);
http_send_file("../report.pdf");
?>

El resultado del ejemplo sería:

HTTP/1.1 206 Partial Content
X-Powered-By: PHP/5.2.2
Accept-Ranges: bytes
Content-Length: 12345
Content-Range: bytes 0-12344
Content-Type: application/pdf
Content-Disposition: inline; filename="document.pdf"

%PDF...

Ver también



add a note add a note User Contributed Notes http_send_file - [1 notes]
up
0
Pieter
5 months ago
This function does not work together nicely with output buffering (ob_start etc.). If you get memory allocation errors, it probably means that you have got output buffering turned on and you should turn off output buffering.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites