`
天梯梦
  • 浏览: 13746214 次
  • 性别: Icon_minigender_2
  • 来自: 洛杉矶
社区版块
存档分类
最新评论

PHP 文件下载类

阅读更多

PHP 文件下载类

 

<?
//====================================================
// FileName:download.class.php
// Summary: 文件下载类
// 
// 使用范例:
// $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 __construct($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";
  }
}
 

 

 

 

PHP header发送各种类型文件下载

 

 

 

分享到:
评论

相关推荐

    php文件下载类带实例

    总的来说,PHP文件下载类通过控制HTTP响应头,实现了将服务器上的文件传递给用户浏览器进行下载的功能。这在构建Web应用时非常实用,能够确保用户能够安全、便捷地获取服务器上的资源。理解并掌握这种技术对于PHP...

    php文件下载类,有实例

    本文将详细介绍一个PHP文件下载类及其用法,帮助你理解如何在自己的项目中实现类似功能。 首先,`download_file.php` 文件可能包含了下载类的定义。此类通常包含以下几个核心方法: 1. `setFilePath()`:设置要...

    PHP文件下载类

    PHP文件下载类,可以直接调用,操作文件下载

    php 文件下载类

    为了方便和高效地处理文件下载,开发者通常会创建一个专门的文件下载类。这个类可以帮助我们管理文件路径、设定下载头、控制下载速度等。让我们深入探讨一下`download.class.php`可能包含的代码结构和关键知识点。 ...

    基于HTTP PHP文件下载类.rar(很好很实用哦)

    这里我们关注的焦点是“基于HTTP PHP文件下载类”。这个压缩包文件包含了一个名为`httpdownload.class.php`的文件,这通常是一个实现了文件下载功能的PHP类。下面我们将详细探讨这个类的工作原理以及相关的PHP知识。...

    php文件下载类,支持限速,断点续传

    首先,"php文件下载类"是指一个用PHP编写的类,其主要功能是处理文件的下载操作。这样的类通常包含一系列方法,如设置下载文件路径、设置下载头信息、控制下载速度等。通过创建此类的实例并调用相应方法,可以轻松地...

    php 文件下载类 文件下载类

    // $download=new download('php,exe,html',false); // if(!$download-&gt;downloadfile($filename)) // { // echo $download-&gt;geterrormsg(); // }

    支持断点续传的PHP文件下载类

    断点续传允许用户在中断下载后,从上次停止...总的来说,支持断点续传的PHP文件下载类是Web开发中一个实用的工具,它使得大文件下载变得更加友好和高效。理解和掌握其工作原理及实现方式对于提升PHP开发技能至关重要。

    PHP文件上传类

    以下是对"PHP文件上传类"的详细解析: 1. **类的结构**: - 一个PHP文件上传类通常包含一系列的方法,如`upload()`用于执行实际的文件上传操作,`checkFileSize()`用于检查文件大小,`checkFileType()`用于验证...

    PHP文件下载

    PHP文件下载类就是为了解决这个问题而设计的,它封装了处理文件下载所需的核心功能,使得开发者可以更方便、高效地实现文件的下载服务。下面将详细阐述PHP文件下载的原理以及如何使用此类。 首先,理解PHP是如何...

    php远程文件下载类.zip

    本教程将基于提供的"php远程文件下载类.zip"详细解释如何实现这一功能,并探讨相关知识点。 首先,让我们理解一下“类库下载-php远程文件下载类”的概念。类库是一种组织代码的方式,它封装了一系列相关功能,方便...

    PHP文件下载过滤类

    "PHP文件下载过滤类"是指一个专门设计用于控制和管理文件下载的安全类,它可以防止非法或者恶意的下载请求,确保只有合法的文件能被用户访问。这个类通常会包含一系列的验证和过滤机制,如检查文件路径的合法性、...

    php中一个很好用的文件上传类.zip

    在PHP开发中,文件上传是常见的功能之一,用于让用户上传图片、文档等文件到服务器。为了简化这个过程,开发者通常会使用预定义的类库或自定义的上传类。在这个"php中一个很好用的文件上传类.zip"压缩包中,包含了一...

    php下载远程文件到本地存储的函数类.zip

    这个压缩包"php下载远程文件到本地存储的函数类.zip"提供了一个专门解决这个问题的函数类,它可以帮助开发者更方便、高效地处理此类任务。下面我们将详细讨论这个函数类的工作原理、使用方法以及可能涉及的相关知识...

    从FTP获取自动下载文件的php类.zip

    本资源提供了一个名为“从FTP获取自动下载文件的php类”的工具,它是一个PHP类库,可以帮助开发者方便地与FTP服务器进行交互,实现文件的自动化下载。 该PHP类的主要功能包括: 1. **连接FTP服务器**:通过提供...

    PHP远程文件下载解压压缩包.zip文件file文件操作类

    结合以上功能,我们可以创建一个完整的类来实现远程ZIP文件的下载和解压: ```php class RemoteFileUpdater { public function update($remoteUrl, $localDestination) { // 下载远程ZIP文件 $downloadedFile = ...

    php实现多进程下载文件类

    使用curl的批处理方法,开启多进程,实现批量下载文件。批量下载文件一般使用循环的方式,逐一执行下载。但在带宽与服务器性能允许的情况下,使用多进程进行...本类利用curl的多进程请求方法,实现多进程同时下载文件。

    php多文件上传类.zip

    "php中文网免费下载站.txt" 和 "php中文网下载站.url" 可能是与这个类库相关的文档或链接,提供了更多学习资源和社区支持,对于初学者来说是非常有价值的参考资料。 总的来说,"php多文件上传类.zip" 提供了一个...

    PHP文件管理系统源码.zip

    【PHP文件管理系统源码详解】 PHP文件管理系统是一种基于PHP编程语言构建的应用程序,它允许用户通过Web界面来创建、编辑、删除、搜索和管理服务器上的文件和目录。这样的系统对于网站管理员、开发人员以及需要远程...

    phpword.zip

    `\PhpOffice\PhpWord\IOFactory`类提供了读写文件的方法,如`load()`用于加载文档,`save()`用于保存文档。 5. **导出格式**:除了默认的.docx格式,PHPWord还支持导出为PDF、HTML、ODT等多种格式,满足不同场景的...

Global site tag (gtag.js) - Google Analytics