PHP实现文件的下载
下面来看一例子:
<?php
$file = ‘images/test.jpg‘;
if(is_file($file)) {
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=".basename($file));
ob_clean();
readfile($file);
exit;
}else{
echo "文件不存在!";
exit;
}
?>
运行结果如下:
注意:
1、当文件为二进制流,不知道下载文件类型的时候,Content-Type 使用application/octet-stream
2、ob_clean() 函数的作用是清空输出缓冲区,若不使用该函数,则文件下载后照片无法正常打开。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。