栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > PHP

php实现文件下载(支持中文文名)

PHP 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

php实现文件下载(支持中文文名)

复制代码 代码如下:
 

 header("Content-type: text/html;charset=utf-8");
 if(strlen($FileName)<=3){echo "下载失败:你所以下载的文件信息有误";return;}
 $FileName=iconv("utf-8","gb2312",$FileName);//进行文件名格式转换,以防中文乱码
 //开始判断路径
 if(!is_null($FilePath)&&strlen($FilePath)>1){

  if(substr($FilePath,0,1)=='/'){//判断是否为绝对路径

   $FilePath=$_SERVER['document_ROOT'].$FilePath;

    }
  if(substr($FilePath,-1)!="/"){//检查最后是否为 / 结尾

   $FilePath=$FilePath.'/';

    }
  if(is_numeric(strpos($FilePath,":"))){//检查是否为绝对路径

   $FilePath=str_replace("/","",$FilePath);

    }
   }elseif(strlen($FilePath)==1&&$FilePath!="/"){

    $FilePath=$FilePath."/";

   }else{

    $FilePath="";

  }
  if(!file_exists($FilePath.$FileName)){

   echo"下载失败:所要下载的文件未找到";return;

   }
 

  header("Content-type: application/octet-stream");

  header("Accept-Ranges: bytes");//按照字节大小返回

  header("Accept-Length: $FileSize");//返回文件大小

  header("Content-Disposition: attachment; filename=".$FileName);//这里客户端的弹出对话框,对应的文件名

 
$FileSize=filesize($FilePath.$FileName);

  $File=fopen($FilePath.$FileName,"r");//打开文件

  $FileBuff=512;

  while($FileSize>=0){

   $FileSize-=$FileBuff;

   echo fread($File,$FileBuff);

  }

  fclose($File);
 }
?>

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/48936.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号