Heim >Backend-Entwicklung >PHP-Tutorial >php实现下载文件的详细流程分析

php实现下载文件的详细流程分析

WBOY
WBOYOriginal
2016-07-25 08:58:45982Durchsuche
  1. header("Content-type:text/html;charset=utf-8");
  2. // $file_name="cookie.jpg";
  3. $file_name="圣诞狂欢.jpg";
  4. //用以解决中文不能显示出来的问题
  5. $file_name=iconv("utf-8","gb2312",$file_name);
  6. $file_sub_path=$_SERVER['DOCUMENT_ROOT']."marcofly/phpstudy/down/down/";
  7. $file_path=$file_sub_path.$file_name;
  8. //首先要判断给定的文件存在与否
  9. if(!file_exists($file_path)){
  10. echo "没有该文件文件";
  11. return ;
  12. }
  13. $fp=fopen($file_path,"r");
  14. $file_size=filesize($file_path);
  15. //下载文件需要用到的头
  16. Header("Content-type: application/octet-stream");
  17. Header("Accept-Ranges: bytes");
  18. Header("Accept-Length:".$file_size);
  19. Header("Content-Disposition: attachment; filename=".$file_name);
  20. $buffer=1024;
  21. $file_count=0;
  22. //向浏览器返回数据
  23. while(!feof($fp) && $file_count$file_con=fread($fp,$buffer);
  24. $file_count+=$buffer;
  25. echo $file_con;
  26. }
  27. fclose($fp);
  28. ?>
复制代码
注意事项: header("Content-type:text/html;charset=utf-8")的作用:在服务器响应浏览器的请求时,告诉浏览器以编码格式为UTF-8的编码显示该内容 关于file_exists()函数不支持中文路径的问题:因为php函数比较早,不支持中文,所以如果被下载的文件名是中文的话,需要对其进行字符编码转换,否则file_exists()函数不能识别,可以使用iconv()函数进行编码转换。 $file_sub_path() 我使用的是绝对路径,执行效率要比相对路径高。 Header("Content-type: application/octet-stream")的作用:通过这句代码客户端浏览器就能知道服务端返回的文件形式 Header("Accept-Ranges: bytes")的作用:告诉客户端浏览器返回的文件大小是按照字节进行计算的 Header("Accept-Length:".$file_size)的作用:告诉浏览器返回的文件大小 Header("Content-Disposition: attachment; filename=".$file_name)的作用:告诉浏览器返回的文件的名称 以上四个Header()是必需的 fclose($fp)可以把缓冲区内最后剩余的数据输出到磁盘文件中,并释放文件指针和有关的缓冲区。


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn