header(
‘Content-type:application/octet-stream‘
);
header(
‘Content-Disposition:attachment;filename="‘
.
basename
(
$file
).
‘"‘
);
header(
‘Content-Length:‘
.
filesize
(
$file
));
readfile(
$file
);
原文地址:https://www.cnblogs.com/jielin/p/10203140.html
时间: 2024-10-11 16:56:27