banner
NEWS LETTER

php使用header下载文件

Scroll down

使用 header 头,实现浏览器下载文件。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
$file_path = 'uploads/test/1.png'
if (!is_file($file)) {
exit('没有文件');
}
header("Content-type:application/octet-stream");
header("Content-Disposition:attachment;filename = " . basename($file_path));
header("Accept-ranges:bytes");
header("Accept-length:" . filesize($file_path));
$handle = fopen($file, 'rb');
while (!feof($handle)) {
echo fread($handle, 102400);
}
fclose($handle);
exit();
?>

参考

php实现文件下载功能(支持中文)

其他文章
请输入关键词进行搜索