>  기사  >  php教程  >  php文件怎么下载:php文件下载

php文件怎么下载:php文件下载

WBOY
WBOY원래의
2016-06-21 08:50:101715검색

/**  Author ZhangZhaoyu  2012-9-13 下午2:28:18 **/
/**
*
* @param unknown_type $file_name
* @param unknown_type $file_sub_path "xxx/xxx/"
*
*/
function down_file($file_name, $file_sub_dir) {
$file_path = $_SERVER["DOCUMENT_ROOT"] . $file_sub_dir . $file_name;
if (!file_exists($file_path)) {
echo "file not exist !";
echo $file_path;
return ;
}
$file = fopen($file_path, "r");
$file_size = filesize($file_path);
//the return file
Header("Content-type: application/octet-stream");
//return by bytes
Header("Accept-Ranges: bytes");
//return the size of the file
Header("Accept-Length: " . $file_size);
//return the name of the file 弹出的下载框对应的文件名
Header("Content-Disposition: attachment; filename=" . $file_name);
//向客户端会送数据
$buffer = 1024;
$file_count = 0;
while (!feof($file) && (($file_size - $file_count)) > 0) {
$file_data = fread($file, $buffer);
$file_count += $buffer;
echo $file_data;
}
fclose($file);
exit();
}
$file_name = $_REQUEST["filename"];
down_file($file_name, "/HelloWorld/project/up/");
?> 本文链接http://www.cxybl.com/html/wlbc/Php/20130326/37397.html



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.