欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php实现文件下载、支持中文文件名的示例代码

程序员文章站 2022-05-25 22:12:57
...
  1. /*----------------

  2. * $FileName 为文件名称,必传
  3. * $FilePath 为文件路径.选填,可以为相对路径或者绝对路径
  4. * @路径只能由英文跟数据组成,不能带有中文
  5. * @编辑整理:bbs.it-home.org
  6. ------------------*/
  7. header("Content-type: text/html;charset=utf-8");
  8. if(strlen($FileName) $FileName=iconv("utf-8","gb2312",$FileName);//进行文件名格式转换,以防中文乱码
  9. //开始判断路径
  10. if(!is_null($FilePath)&&strlen($FilePath)>1){
  11. if(substr($FilePath,0,1)=='/'){//判断是否为绝对路径
  12. $FilePath=$_SERVER['DOCUMENT_ROOT'].$FilePath;
  13. }
  14. if(substr($FilePath,-1)!="/"){//检查最后是否为 / 结尾
  15. $FilePath=$FilePath.'/';
  16. }
  17. if(is_numeric(strpos($FilePath,":\"))){//检查是否为绝对路径
  18. $FilePath=str_replace("/","\",$FilePath);
  19. }
  20. }elseif(strlen($FilePath)==1&&$FilePath!="/"){
  21. $FilePath=$FilePath."/";
  22. }else{
  23. $FilePath="";
  24. }
  25. if(!file_exists($FilePath.$FileName)){
  26. echo"下载失败:所要下载的文件未找到";return;
  27. }
  28. /*-------------
  29. 发送下载相关的头部信息
  30. -------------=*/
  31. header("Content-type: application/octet-stream");
  32. header("Accept-Ranges: bytes");//按照字节大小返回
  33. header("Accept-Length: $FileSize");//返回文件大小
  34. header("Content-Disposition: attachment; filename=".$FileName);//这里客户端的弹出对话框,对应的文件名
  35. /*-------------

  36. 开始下载相关
  37. -------------=*/
  38. $FileSize=filesize($FilePath.$FileName);
  39. $File=fopen($FilePath.$FileName,"r");//打开文件
  40. $FileBuff=512;
  41. while($FileSize>=0){
  42. $FileSize-=$FileBuff;
  43. echo fread($File,$FileBuff);
  44. }
  45. fclose($File);
  46. }
  47. ?>
复制代码