header(
‘Content-type:application/octet-stream‘
);
header(
‘Content-Disposition:attachment;filename="‘
.
basename
(
$file
).
‘"‘
);
header(
‘Content-Length:‘
.
filesize
(
$file
));
readfile(
$file
);
php下载文件添加header响应头
原文地址:https://www.cnblogs.com/jielin/p/10203140.html