update : 2015.11.03
php.shukuma.com검색:
|
http_send_file(PECL pecl_http >= 0.1.0) http_send_file — Send 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 인수
반환값
성공 시 예제
Example #1 A http_send_file() example
<?php 위 예제의 출력: 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... 참고
|