php實作檔下載、支援中文檔名的範例程式碼

WBOY
發布: 2016-07-25 08:55:53
原創
755 人瀏覽過
  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. ?>

复制代码


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!