PHP文件下载的小实例

这个文件下载实例做得非常的详细他是结合header函数与while fread函数把文件分断读出来然后再发送到客户端了,算得上一个标准的文件下载实例。

一个PHP文件下载的小实例

  1. /*======================================================
  2. $FileName 为文件名称,必传
  3. $FilePath 为文件路径.选填,可以为相对路径或者绝对路径
  4. 路径只能由英文跟数据组成,不能带有中文
  5. 如有问题 欢迎联系博主指出
  6. ======================================================*/
  7. 代码如下 复制代码
  8. <?php
  9. header("Content-type: text/html;charset=utf-8");
  10. if(strlen($FileName)<=3){echo "下载失败:你所以下载的文件信息有误";return;}
  11. $FileName=iconv("utf-8","gb2312",$FileName);//进行文件名格式转换,以防中文乱码
  12. //开始判断路径
  13. if(!is_null($FilePath)&&strlen($FilePath)>1){
  14. if(substr($FilePath,0,1)=='/'){//判断是否为绝对路径
  15. $FilePath=$_SERVER['DOCUMENT_ROOT'].$FilePath;
  16. }
  17. if(substr($FilePath,-1)!="/"){//检查最后是否为 / 结尾
  18. $FilePath=$FilePath.'/';
  19. }
  20. if(is_numeric(strpos($FilePath,":\"))){//检查是否为绝对路径
  21. $FilePath=str_replace("/","\",$FilePath);
  22. }
  23. }elseif(strlen($FilePath)==1&&$FilePath!="/"){
  24. $FilePath=$FilePath."/";
  25. }else{
  26. $FilePath="";
  27. }
  28. if(!file_exists($FilePath.$FileName)){
  29. echo"下载失败:所要下载的文件未找到";return;
  30. }
  31. /*================================================
  32. 发送下载相关的头部信息
  33. =================================================*/
  34. header("Content-type: application/octet-stream");
  35. header("Accept-Ranges: bytes");//按照字节大小返回
  36. header("Accept-Length: $FileSize");//返回文件大小
  37. header("Content-Disposition: attachment; filename=".$FileName);//这里客户端的弹出对话框,对应的文件名
  38. /*================================================
  39. 开始下载相关
  40. =================================================*/
  41. $FileSize=filesize($FilePath.$FileName);
  42. $File=fopen($FilePath.$FileName,"r");//打开文件
  43. $FileBuff=512;
  44. while($FileSize>=0){
  45. $FileSize-=$FileBuff;
  46. echo fread($File,$FileBuff);
  47. }
  48. fclose($File);
  49. }
  50. ?>

总结:本下载实例并且支持中文文名了,在文件开头就进行了uft8编码转换了.