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

search for in the

http_send_last_modified> <http_send_data
Last updated: Fri, 18 Sep 2009

view this page in

http_send_file

(PECL pecl_http >= 0.1.0)

http_send_fileSend file

Описание

bool http_send_file ( string $file )

Sends a file with support for (multiple) range requests.

This functions behaviour and further action is dependent on the following INI настройкаs: http.send.not_found_404 и http.log.not_found.

If the INI настройка http.send.not_found_404 is enabled and the INI настройка http.log.not_found points to a writable file, a log message is written when the file was not found.

Параметри

file

the file to send

Връщани стойности

Връща TRUE при успех или FALSE при неуспех.

Примери

Example #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");
?>

Примерът по-горе ще изведе:

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...

Вж. също



add a note add a note User Contributed Notes
http_send_file
There are no user contributed notes for this page.

http_send_last_modified> <http_send_data
Last updated: Fri, 18 Sep 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites