PHP使用header方式实现文件下载功能(2)

feof用来判断文件是否已经读到了末尾,fread用来把文件读入缓冲区,缓冲区的大小是1024,一边读取一边把数据输出到浏览器。为了下载的安全性每次读数据都进行字节的计数。文件读取完毕后关闭输入流

注意:

a、如果运行的过程中出现问题,可以清空(擦掉)输出缓冲区,使用下面的代码即可

ob_clean();

b、很多人喜欢用readfile,如果是大文件,可能会有问题

完整代码

<?php ob_clean(); $action = $_GET['action']; $filename = base64_decode($action);//传的参数encode了 $filepath = '/data/www/www.test.com/'.$filename; if(!file_exists($filepath)){ exit; } $fp=fopen($filepath,"r"); $filesize=filesize($filepath); header("Content-type:application/octet-stream"); header("Accept-Ranges:bytes"); header("Accept-Length:".$filesize); header("Content-Disposition: attachment; filename=".$filename); $buffer=1024; $buffer_count=0; while(!feof($fp)&&$file_Size-$buffer_count>0){ $data=fread($fp,$buffer); $buffer_count+=$buffer; echo $data; } fclose($fp); ?>

PS:下面看一段实例代码php如何通过header文件头实现文件下载

具体代码如下所示:

$file = $_GET['file']; if(file_exists($file)){ header("Content-type:application/octet-stream"); $filename = basename($file); header("Content-Disposition:attachment;filename = ".$filename); header("Accept-ranges:bytes"); header("Accept-length:".filesize($file)); readfile($file); }else{ echo "<script>alert('文件不存在')</script>"; }

总结

以上所述是小编给大家介绍的PHP使用header方式实现文件下载功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/55838e8acb45d567370ef4f34acf5df4.html