PHP文件下载的小实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-11 14:22:53 浏览: 评论:0
这个文件下载实例做得非常的详细他是结合header函数与while fread函数把文件分断读出来然后再发送到客户端了,算得上一个标准的文件下载实例。
一个PHP文件下载的小实例
- /*======================================================
- $FileName 为文件名称,必传
- $FilePath 为文件路径.选填,可以为相对路径或者绝对路径
- 路径只能由英文跟数据组成,不能带有中文
- 如有问题 欢迎联系博主指出
- ======================================================*/
- 代码如下 复制代码
- <?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编码转换了.
Tags: PHP 文件 下载实例
相关文章
- ·php实现文件上传的程序代码(2013-11-13)
- ·php 实现多文件上传程序代码(2013-11-13)
- ·php+CKFinder上传中文名文件乱码问题的解决方法(2013-11-14)
- ·php中检测上传文件类型与上传图片大小代码(2013-11-14)
- ·php上传图片失败原图(2013-11-28)
- ·CKEditor+CKFinder+php上传文件配置方法(2013-12-02)
- ·PHP多文件上传(2013-12-09)
- ·php 文件上传实例代码(2013-12-16)
- ·php文件上传程序(2013-12-16)
- ·php初学者用文件上传实例(2013-12-23)
- ·php上传文件与图片重命名方法总结(2014-01-06)
- ·如何设置PHP上传文件大小限制(2014-01-06)
- ·php获取上传文件名的文件类型(2014-01-15)
- ·多图片上传的php代码(2014-01-15)
- ·php文件上传之php.ini配置上传文件详解(2014-03-02)
- ·PHP文件上传详解(2014-03-02)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)