当前位置:Gxlcms > PHP教程 > php实现文件下载、支持中文文件名的示例代码

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

时间:2021-07-01 10:21:17 帮助过:15人阅读

  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)<=3){echo "下载失败:你所以下载的文件信息有误";return;}
  9. $FileName=iconv("utf-8","gb2312",$FileName);//进行文件名格式转换,以防中文乱码
  10. //开始判断路径
  11. if(!is_null($FilePath)&&strlen($FilePath)>1){
  12. if(substr($FilePath,0,1)=='/'){//判断是否为绝对路径
  13. $FilePath=$_SERVER['DOCUMENT_ROOT'].$FilePath;
  14. }
  15. if(substr($FilePath,-1)!="/"){//检查最后是否为 / 结尾
  16. $FilePath=$FilePath.'/';
  17. }
  18. if(is_numeric(strpos($FilePath,":\"))){//检查是否为绝对路径
  19. $FilePath=str_replace("/","\",$FilePath);
  20. }
  21. }elseif(strlen($FilePath)==1&&$FilePath!="/"){
  22. $FilePath=$FilePath."/";
  23. }else{
  24. $FilePath="";
  25. }
  26. if(!file_exists($FilePath.$FileName)){
  27. echo"下载失败:所要下载的文件未找到";return;
  28. }
  29. /*-------------
  30. 发送下载相关的头部信息
  31. -------------=*/
  32. header("Content-type: application/octet-stream");
  33. header("Accept-Ranges: bytes");//按照字节大小返回
  34. header("Accept-Length: $FileSize");//返回文件大小
  35. header("Content-Disposition: attachment; filename=".$FileName);//这里客户端的弹出对话框,对应的文件名

  36. /*-------------

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

人气教程排行