php实现文件下载功能的几个代码分享

我们一般实现下载都是调用url来下载,但是遇到ie能识别打开的文件就不能用这种方式了,比如下载一个图片、html网页等,这时就需要编程来实现。

一个简单的php文件下载源代码,虽不支持断点续传等,但是可以满足一些常用的需求了。php下载文件其实用一个a标签就能实现,比如 <a href="web/magento-1.8.1.0.zip">magento-1.8.1.0.zip</a> 。但是遇到一些浏览器能识别的格式,比如.txt,.html,.pdf等,再用<a href="web/abc.txt">abc.txt</a> 想必也知道会发生什么了,代码如下:

  1. <?php
  2. /**
  3. * 文件下载
  4. *
  5. **/
  6. header("Content-type:text/html;charset=utf-8");
  7. download('web/magento-1.8.1.0.zip', 'magento下载');
  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. } //phpfensi.com
  30. fclose($fp);
  31. }
  32. ?>

也可以看看这个注释比较详细的代码:

  1. <?php
  2. //文件下载,下载一张图片
  3. //$file_name="Angel.mp3";
  4. $file_name="bjnihao.jpg"; //出现中文 程序无法完成下载 提示:文件不存在
  5. //对文件进行转码(PHP文件函数 比较古老 需对中文码转成 gb2312)
  6. //iconv — Convert string to requested character encoding
  7. //by www.phpfensi.com
  8. $file_name=iconv("utf-8","gb2312",$file_name);
  9. //设置文件下载路径(相对路径)
  10. //$file_path="./dowm/".$file_name;
  11. //使用绝对路径
  12. $file_path=$_SERVER['DOCUMENT_ROOT']."/http/dowm/".$file_name;
  13. //打开文件---先判断再操作
  14. if(!file_exists($file_path)){
  15. echo "文件不存在";
  16. return ; //直接退出
  17. }
  18. //存在--打开文件
  19. $fp=fopen($file_path,"r");
  20. //获取文件大小
  21. $file_size=filesize($file_path);
  22. //http 下载需要的响应头
  23. header("Content-type: application/octet-stream"); //返回的文件
  24. header("Accept-Ranges: bytes"); //按照字节大小返回
  25. header("Accept-Length: $file_size"); //返回文件大小
  26. header("Content-Disposition: attachment; filename=".$file_name);//这里客户端的弹出对话框,对应的文件名
  27. //向客户端返回数据
  28. //设置大小输出
  29. $buffer=1024;
  30. //为了下载安全,我们最好做一个文件字节读取计数器
  31. $file_count=0;
  32. //判断文件指针是否到了文件结束的位置(读取文件是否结束)
  33. while(!feof($fp) && ($file_size-$file_count)>0){
  34. $file_data=fread($fp,$buffer);
  35. //统计读取多少个字节数
  36. $file_count+=$buffer;
  37. //把部分数据返回给浏览器
  38. echo $file_data;
  39. }
  40. //关闭文件
  41. fclose($fp);
  42. ?>

封装函数:

  1. <?php
  2. /*
  3. 封装函数:
  4. 参数说明----$file_name:文件名
  5. $file_sub_dir:文件下载的子路径
  6. */
  7. function file_dowm($file_name,$file_sub_dir){
  8. //文件转码
  9. $file_name=iconv("utf-8","gb2312",$file_name);
  10. //使用绝对路径
  11. $file_path=$_SERVER['DOCUMENT_ROOT']."$file_sub_dir".$file_name;
  12. //打开文件---先判断再操作
  13. if(!file_exists($file_path)){
  14. echo "文件不存在";
  15. return ; //直接退出
  16. }
  17. //存在--打开文件
  18. $fp=fopen($file_path,"r");
  19. //获取文件大小
  20. $file_size=filesize($file_path);
  21. /*
  22. //这里可以设置超过多大不能下载
  23. if($file_size>50){
  24. echo "文件太大不能下载";
  25. return ;
  26. }*/
  27. //http 下载需要的响应头
  28. header("Content-type: application/octet-stream"); //返回的文件
  29. header("Accept-Ranges: bytes"); //按照字节大小返回
  30. header("Accept-Length: $file_size"); //返回文件大小
  31. header("Content-Disposition: attachment; filename=".$file_name);//这里客户端的弹出对话框,对应的文件名
  32. //向客户端返回数据
  33. //设置大小输出
  34. $buffer=1024;
  35. //为了下载安全,我们最好做一个文件字节读取计数器
  36. $file_count=0;
  37. //判断文件指针是否到了文件结束的位置(读取文件是否结束)
  38. while(!feof($fp) && ($file_size-$file_count)>0){
  39. $file_data=fread($fp,$buffer);
  40. //统计读取多少个字节数
  41. $file_count+=$buffer;
  42. //把部分数据返回给浏览器
  43. echo $file_data;
  44. }
  45. //关闭文件
  46. fclose($fp);
  47. }
  48. file_dowm("bjnihao.jpg","/http/dowm/");
  49. ?>

另一个代码:

  1. public function downloads($name){
  2. $name_tmp = explode("_",$name);
  3. $type = $name_tmp[0];
  4. $file_time = explode(".",$name_tmp[3]);
  5. $file_time = $file_time[0];
  6. $file_date = date("Y/md",$file_time);
  7. $file_dir = SITE_PATH."/data/uploads/$type/$file_date/";
  8. if (!file_exists($file_dir.$name)){
  9. header("Content-type: text/html; charset=utf-8");
  10. echo "File not found!";
  11. exit;
  12. } else {
  13. $file = fopen($file_dir.$name,"r");
  14. Header("Content-type: application/octet-stream");
  15. Header("Accept-Ranges: bytes");
  16. Header("Accept-Length: ".filesize($file_dir . $name));
  17. Header("Content-Disposition: attachment; filename=".$name);
  18. echo fread($file, filesize($file_dir.$name));
  19. fclose($file);
  20. }
  21. }