PHP文件下载类

代码如下:

<?   
//====================================================   
//   使用范例:   
// $download=new download('php,exe,html',false);   
//  if(!$download->downloadfile($filename))   
//  {   
//    echo $download->geterrormsg();   
//  }         
//====================================================   
class download{   
  var $debug=true;   
  var $errormsg='';   
  var $Filter=array();   
  var $filename='';   
  var $mineType='text/plain';   
  var $xlq_filetype=array();

function download($fileFilter='',$isdebug=true)   
  {   
    $this->setFilter($fileFilter);   
        $this->setdebug($isdebug);           
        $this->setfiletype();   
  }

function setFilter($fileFilter)   
  {   
    if(empty($fileFilter)) return ;   
        $this->Filter=explode(',',strtolower($fileFilter));   
  }   
  function setdebug($debug)   
  {   
    $this->debug=$debug;   
  }

function setfilename($filename)   
  {   
    $this->filename=$filename;   
  }

function downloadfile($filename)   
  {   
    $this->setfilename($filename);   
    if($this->filecheck())   
        {   
          $fn = array_pop( explode( '/', strtr( $this->filename, '\\', '/' ) ) );   
          header( "Pragma: public" );   
      header( "Expires: 0" ); // set expiration time   
      header( "Cache-Component: must-revalidate, post-check=0, pre-check=0" );   
          header( "Content-type:".$this->mineType );   
      header( "Content-Length: " . filesize( $this->filename ) );   
      header( "Content-Disposition: attachment; filename=\"$fn\"" );   
      header( 'Content-Transfer-Encoding: binary' );   
      readfile( $this->filename );   
      return true;   
        }else   
        {   
        return false;   
        }   
  }   
  function geterrormsg()   
  {   
    return $this->errormsg;   
  }

function filecheck()   
  {   
    $filename=$this->filename;   
        if(file_exists($filename))   
        {   
           $filetype=strtolower(array_pop(explode('.',$filename)));   
           if(in_array($filetype,$this->Filter))   
           {   
             $this->errormsg.=$filename.'不允许下载!';   
                 if($this->debug) exit($filename.'不允许下载!') ;   
                 return false;   
           }else   
           {   
             if ( function_exists( "mime_content_type" ) )   
                 {   
           $this->mineType = mime_content_type( $filename );   
         }   
                 if(empty($this->mineType))   
                 {   
                    if( isset($this->xlq_filetype[$filetype]) )  $this->mineType = $this->xlq_filetype[$filetype];   
                 }   
                 if(!empty($this->mineType))   
                   return true;   
                 else   
                 {   
                    $this->errormsg.='获取'.$filename.'文件类型时候发生错误,或者不存在预定文件类型内';   
                        if($this->debug) exit('获取文件类型出错');   
                        return false;   
                 }   
           }    
        }else   
        {   
          $this->errormsg.=$filename.'不存在!';   
          if($this->debug) exit($filename.'不存在!') ;   
          return false;   
        }   
  }

function setfiletype()   
  {   
    $this->xlq_filetype['chm']='application/octet-stream';   
    $this->xlq_filetype['ppt']='application/vnd.ms-powerpoint';   
    $this->xlq_filetype['xls']='application/vnd.ms-excel';   
    $this->xlq_filetype['doc']='application/msword';   
    $this->xlq_filetype['exe']='application/octet-stream';   
    $this->xlq_filetype['rar']='application/octet-stream';   
    $this->xlq_filetype['js']="javascript/js";   
    $this->xlq_filetype['css']="text/css";   
    $this->xlq_filetype['hqx']="application/mac-binhex40";   
    $this->xlq_filetype['bin']="application/octet-stream";   
    $this->xlq_filetype['oda']="application/oda";   
    $this->xlq_filetype['pdf']="application/pdf";   
    $this->xlq_filetype['ai']="application/postsrcipt";   
    $this->xlq_filetype['eps']="application/postsrcipt";   
    $this->xlq_filetype['es']="application/postsrcipt";   
    $this->xlq_filetype['rtf']="application/rtf";   
    $this->xlq_filetype['mif']="application/x-mif";   
    $this->xlq_filetype['csh']="application/x-csh";   
    $this->xlq_filetype['dvi']="application/x-dvi";   
    $this->xlq_filetype['hdf']="application/x-hdf";   
    $this->xlq_filetype['nc']="application/x-netcdf";   
    $this->xlq_filetype['cdf']="application/x-netcdf";   
    $this->xlq_filetype['latex']="application/x-latex";   
    $this->xlq_filetype['ts']="application/x-troll-ts";   
    $this->xlq_filetype['src']="application/x-wais-source";   
    $this->xlq_filetype['zip']="application/zip";   
    $this->xlq_filetype['bcpio']="application/x-bcpio";   
    $this->xlq_filetype['cpio']="application/x-cpio";   
    $this->xlq_filetype['gtar']="application/x-gtar";   
    $this->xlq_filetype['shar']="application/x-shar";   
    $this->xlq_filetype['sv4cpio']="application/x-sv4cpio";   
    $this->xlq_filetype['sv4crc']="application/x-sv4crc";   
    $this->xlq_filetype['tar']="application/x-tar";   
    $this->xlq_filetype['ustar']="application/x-ustar";   
    $this->xlq_filetype['man']="application/x-troff-man";   
    $this->xlq_filetype['sh']="application/x-sh";   
    $this->xlq_filetype['tcl']="application/x-tcl";   
    $this->xlq_filetype['tex']="application/x-tex";   
    $this->xlq_filetype['texi']="application/x-texinfo";   
    $this->xlq_filetype['texinfo']="application/x-texinfo";   
    $this->xlq_filetype['t']="application/x-troff";   
    $this->xlq_filetype['tr']="application/x-troff";   
    $this->xlq_filetype['roff']="application/x-troff";   
    $this->xlq_filetype['shar']="application/x-shar";   
    $this->xlq_filetype['me']="application/x-troll-me";   
    $this->xlq_filetype['ts']="application/x-troll-ts";   
    $this->xlq_filetype['gif']="image/gif";   
    $this->xlq_filetype['jpeg']="image/pjpeg";   
    $this->xlq_filetype['jpg']="image/pjpeg";   
    $this->xlq_filetype['jpe']="image/pjpeg";   
    $this->xlq_filetype['ras']="image/x-cmu-raster";   
    $this->xlq_filetype['pbm']="image/x-portable-bitmap";   
    $this->xlq_filetype['ppm']="image/x-portable-pixmap";   
    $this->xlq_filetype['xbm']="image/x-xbitmap";   
    $this->xlq_filetype['xwd']="image/x-xwindowdump";   
    $this->xlq_filetype['ief']="image/ief";   
    $this->xlq_filetype['tif']="image/tiff";   
    $this->xlq_filetype['tiff']="image/tiff";   
    $this->xlq_filetype['pnm']="image/x-portable-anymap";   
    $this->xlq_filetype['pgm']="image/x-portable-graymap";   
    $this->xlq_filetype['rgb']="image/x-rgb";   
    $this->xlq_filetype['xpm']="image/x-xpixmap";   
    $this->xlq_filetype['txt']="text/plain";   
    $this->xlq_filetype['c']="text/plain";   
    $this->xlq_filetype['cc']="text/plain";   
    $this->xlq_filetype['h']="text/plain";   
    $this->xlq_filetype['html']="text/html";   
    $this->xlq_filetype['htm']="text/html";   
    $this->xlq_filetype['htl']="text/html";   
    $this->xlq_filetype['rtx']="text/richtext";   
    $this->xlq_filetype['etx']="text/x-setext";   
    $this->xlq_filetype['tsv']="text/tab-separated-values";   
    $this->xlq_filetype['mpeg']="video/mpeg";   
    $this->xlq_filetype['mpg']="video/mpeg";   
    $this->xlq_filetype['mpe']="video/mpeg";   
    $this->xlq_filetype['avi']="video/x-msvideo";   
    $this->xlq_filetype['qt']="video/quicktime";   
    $this->xlq_filetype['mov']="video/quicktime";   
    $this->xlq_filetype['moov']="video/quicktime";   
    $this->xlq_filetype['movie']="video/x-sgi-movie";   
    $this->xlq_filetype['au']="audio/basic";   
    $this->xlq_filetype['snd']="audio/basic";   
    $this->xlq_filetype['wav']="audio/x-wav";   
    $this->xlq_filetype['aif']="audio/x-aiff";   
    $this->xlq_filetype['aiff']="audio/x-aiff";   
    $this->xlq_filetype['aifc']="audio/x-aiff";   
    $this->xlq_filetype['swf']="application/x-shockwave-flash";   
  }   
}   
?>

(0)

相关推荐

  • php中强制下载文件的代码(解决了IE下中文文件名乱码问题)

    中间遇到一个问题是提交的中文文件名直接放到header里在IE下会变成乱码,解决方法是将文件名先urlencode一下再放入header,如下. 复制代码 代码如下: <?php $file_name = urlencode($_REQUEST['filename']); header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, po

  • PHP实现远程下载文件到本地

    代码很简单就不多废话了,直接奉上: <?php echo httpcopy("http://www.baidu.com/img/baidu_sylogo1.gif"); function httpcopy($url, $file="", $timeout=60) { $file = empty($file) ? pathinfo($url,PATHINFO_BASENAME) : $file; $dir = pathinfo($file,PATHINFO_DI

  • php 下载保存文件保存到本地的两种实现方法

    第一种: <?php function downfile() { $filename=realpath("resume.html"); //文件名 $date=date("Ymd-H:i:m"); Header( "Content-type: application/octet-stream "); Header( "Accept-Ranges: bytes "); Header( "Accept-Length

  • 跨浏览器PHP下载文件名中的中文乱码问题解决方法

    本文实例讲述了跨浏览器PHP下载文件名中的中文乱码问题解决方法.分享给大家供大家参考.具体如下: 复制代码 代码如下: <?php $ua = $_SERVER["HTTP_USER_AGENT"]; $filename = "中文 文件名.txt"; $encoded_filename = urlencode($filename); $encoded_filename = str_replace("+", "%20",

  • php实现文件下载代码分享

    简单的文件下载只需要使用HTML的连接标记<a>,并将属性href的URL值指定为下载的文件即可.所示: <a href="http://www.jb51.net/download/book.rar">下载文件</a> 如果通过上面的代码实现文件下载,只能处理一些浏览器不能默认识别的MIME类型文件,例如当访问book.rar文件时,浏览器并没有直接打开,而是弹出一个下载提示框,提示用户"下载"还是"打开"等处

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

    复制代码 代码如下: /*======================================================  $FileName 为文件名称,必传  $FilePath 为文件路径.选填,可以为相对路径或者绝对路径      路径只能由英文跟数据组成,不能带有中文 ======================================================*/ <?php  header("Content-type: text/html;char

  • Php中文件下载功能实现超详细流程分析

    客户端从服务端下载文件的流程分析: 浏览器发送一个请求,请求访问服务器中的某个网页(如:down.php),该网页的代码如下. 服务器接受到该请求以后,马上运行该down.php文件 运行该文件的时候,必然要把将要被下载的文件读入内存当中(这里是圣诞狂欢.jpg这张图片),这里通过fopen()函数完成该动作 注意:任何有关从服务器下载的文件操作,必然需要先在服务端将文件读入内存当中 现在文件已经在内存当中了,这是需要从内存当中读取文件,通过fread()函数完成该动作 需要注意的是,如果文件较

  • php实现支持中文的文件下载功能示例

    前言 本文主要给大家介绍了关于php实现支持中文的文件下载功能的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧. 问题说明 文件下载,通常有一种最为简单的方法,那就是将url直接指向服务器上文件的所在位置.但是这个方法存在很大的安全隐患. 暴露了服务器文件目录结构 无法禁止非法请求来源,无法对文件下载请求做安全验证 解决方案 一.将文件下载请求映射到后端程序url 借助http服务器(apache/nginx)实现映射功能 这里以apache为例进行说明 借助apach

  • php下载文件的代码示例

    复制代码 代码如下: <?php $file = 'monkey.gif'; if (file_exists($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename($file)); header('Content-Tra

  • 摘自织梦CMS的HTTP文件下载类

    本文实例讲述了摘自织梦CMS的HTTP文件下载类.分享给大家供大家参考.具体如下: <?php if(!defined('DEDEINC')) exit("Request Error!"); /** * 织梦HTTP下载类 * * @version $Id: dedehttpdown.class.php 1 11:42 2010年7月6日Z tianya $ * @package DedeCMS.Libraries * @copyright Copyright (c) 2007

  • php实现的支持断点续传的文件下载类

    本文实例讲述了php实现的支持断点续传的文件下载类及其用法,是非常实用的技巧.分享给大家供大家参考.具体方法如下: 通常来说,php支持断点续传,主要依靠HTTP协议中 header HTTP_RANGE实现. HTTP断点续传原理: Http头 Range.Content-Range() HTTP头中一般断点下载时才用到Range和Content-Range实体头, Range用户请求头中,指定第一个字节的位置和最后一个字节的位置,如(Range:200-300) Content-Range用

  • PowerShell小技巧之实现文件下载(类wget)

    对Linux熟悉的读者可能会对Linux通过wget下载文件有印象,这个工具功能很强大,在.NET环境下提到下载文件大多数人熟悉的是通过System.Net.WebClient进行下载,这个程序集能实现下载的功能,但是有缺陷,如果碰上类似于-/scripts/?dl=417这类的下载链接将无法正确识别文件名,下载的文件通常会被命名为dl=417这样古怪的名字,其实对应的文件名是在访问这个链接返回结果的HTTP头中包含的.事实上微软也提供了避免这些缺陷的程序集System.Net.HttpWebR

  • PHP文件下载类

    复制代码 代码如下: <?    //====================================================    //   使用范例:    // $download=new download('php,exe,html',false);    //  if(!$download->downloadfile($filename))    //  {    //    echo $download->geterrormsg();    //  }    

  • jsp实现Servlet文件下载的方法

    本文实例讲述了jsp实现Servlet文件下载的方法.分享给大家供大家参考.具体如下: package com; import java.io.IOException; import java.io.PrintWriter; import java.net.URLEncoder; import java.util.Date; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import j

  • Java Web端程序实现文件下载的方法分享

    Web文件下载有两种,一种是文件在网站目录下,在浏览器中直接输入文件路径即可下载,如http://www.xxx.com/file.zip.另外一种是文件不在网站目录下或者文件是动态生成的(导出报表或者导出excel等),这种情况需要通过response的OutputStream实现文件的下载.DownloadUtils是一个Java Web文件下载工具类,提供多种静态方法实现文件下载. package com.rhui.util; import java.io.BufferedInputStr

  • servlet实现文件下载的实用类分享

    复制代码 代码如下: package com; import java.io.IOException;import java.io.PrintWriter;import java.net.URLEncoder;import java.util.Date; import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;i

  • Android实现网络多线程文件下载

    实现原理 (1)首先获得下载文件的长度,然后设置本地文件的长度. (2)根据文件长度和线程数计算每条线程下载的数据长度和下载位置. 如:文件的长度为6M,线程数为3,那么,每条线程下载的数据长度为2M,每条线程开始下载的位置如下图所示: (网上找的图) 例如10M大小,使用3个线程来下载, 线程下载的数据长度 (10%3 == 0 ? 10/3:10/3+1) ,第1,2个线程下载长度是4M,第三个线程下载长度为2M 下载开始位置:线程id*每条线程下载的数据长度 = ? 下载结束位置:(线程i

  • asp.net 需要登陆的网站上下载网页源代码和文件

    这个是文件下载类: 复制代码 代码如下: using System; using System.IO; using System.Net; using System.Web; public class SRWebClient { CookieContainer cookie; public SRWebClient() { cookie = new CookieContainer(); } /// <TgData> /// <Alias>下载Web源代码</Alias>

  • PHP下载远程图片并保存到本地方法总结

    1.获取远程文件大小及信息的函数 function getFileSize($url){ $url = parse_url($url); if($fp = @fsockopen($url['host'],empty($url['port'])?80:$url['port'],$error)){ fputs($fp,"GET ".(empty($url['path'])?'/':$url['path'])." HTTP/1.1\r\n"); fputs($fp,&qu

随机推荐