PHP-Logo
Druckansicht von http://www.php-homepage.de/manual/function.http-send-file.php

PHP-Logo
[ Main Menue ]
Homepage
Downloads
Artikel
Scripts
Forum
PHP-Manual
Links
News
Freelancer
Bücher
RuDolF
Suche
Misc
Über diese Seite
Kontakt
Wunschzettel
MyGuestbook
*
[ Suche ]
*
[ Manual ]
HTTP Funktionen
*

Follow on Twitter - @phphomepage

RSS Feed blogoscoop
 http_send_data  Letztes Update:
07.01.2012
http_send_last_modified 

http_send_file

(PECL pecl_http >= 0.1.0)

http_send_fileSend file

Beschreibung

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-Einstellungens: http.send.not_found_404 und http.log.not_found.

If the INI-Einstellungen http.send.not_found_404 is enabled and the INI-Einstellungen http.log.not_found points to a writable file, a log message is written when the file was not found.

Parameter-Liste

file

the file to send

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

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

Siehe auch

© Copyright 1999 - 2011 by Mark Kronsbein | Impressum | NutzungsbedingungenWeiterempfehlen | Seitenanfang
0.0026