这个文件下载实例做得非常的详细他是结合header函数与while fread函数把文件分断读出来然后再发送到客户端了,算得上一个标准的文件下载实例。
一个PHP文件下载的小实例
-
-
-
-
-
-
- 代码如下 复制代码
- <?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);
- }
- ?>
总结:本下载实例并且支持中文文名了,在文件开头就进行了uft8编码转换了. |