php header()函数实现文件下载的例子

虽然php 中的header()函数下载文件不支持断点续传功能但有时我们还真需要此功能,如我们下载txt,图片文件时如果直接是个连接估计是直接打开了而不是下载了,那么我们可如何实现下载呢,代码如下:

  1. <?php
  2. /**
  3. * 文件下载
  4. *
  5. **/
  6. header("Content-type:text/html;charset=utf-8");
  7. download('web/www.phpfensi.com .txt', 'txt文件下载');
  8. function download($file, $down_name){
  9. $suffix = substr($file,strrpos($file,'.')); //获取文件后缀
  10. $down_name = $down_name.$suffix; //新文件名,就是下载后的名字
  11. //判断给定的文件存在与否
  12. if(!file_exists($file)){
  13. die("您要下载的文件已不存在,可能是被删除");
  14. }
  15. $fp = fopen($file,"r");
  16. $file_size = filesize($file);
  17. //下载文件需要用到的头
  18. header("Content-type: application/octet-stream");
  19. header("Accept-Ranges: bytes");
  20. header("Accept-Length:".$file_size);
  21. header("Content-Disposition: attachment; filename=".$down_name);
  22. $buffer = 1024;
  23. $file_count = 0;
  24. //向浏览器返回数据
  25. while(!feof($fp) && $file_count < $file_size){
  26. $file_con = fread($fp,$buffer);
  27. $file_count += $buffer;
  28. echo $file_con;
  29. }
  30. fclose($fp);
  31. }
  32. ?>