天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

PHP文件下載類

復(fù)制代碼 代碼如下:<?   
//====================================================   
//   使用范例:   
// $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.'文件類型時候發(fā)生錯誤,或者不存在預(yù)定文件類型內(nèi)';   
                        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技術(shù)PHP文件下載類,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 中文字幕日本一区 | 亚洲中字幕永久在线观看 | 2018久久视频在线视频观看 | 久久精品国产久精国产果冻传媒 | 久久AV喷吹AV高潮欧美 | 免费 高清 中文在线观看 | 欧美囗交xx bbb视频 | 欧美日韩另类在线观看视频 | 亚洲手机在线人成视频 | 午夜一区二区三区 | 午夜电影三级还珠格格 | 91精品福利一区二区 | 中文字幕人妻无码系列第三区 | 嫩草伊人久久精品少妇AV网站 | 57PAO强力打造高清免费 | 91久久偷偷做嫩草影院免 | 久久精品久精品99热 | 99久久夜色精品国产亚洲AV卜 | 起碰免费公开97在线视频 | 99国内精精品久久久久久婷婷 | 亚洲欧美人成视频在线 | 永久免费无码AV国产网站 | 成人国产AV精品久久久久 | 风情韵味人妻HD | 久久精品亚洲热综合一本 | 手机看片成人 | 99久久综合精品免费 | 国产精品卡1卡2卡三卡四 | 中文视频在线 | 国产系列在线亚洲视频 | 国产成人精品永久免费视频 | 亚洲精品视频在线观看免费 | 99久女女精品视频在线观看 | 亚洲国产综合久久久无码色伦 | 日本妈妈在线观看中文字幕 | 厕所xxxxx| 午夜福利合集1000在线 | 中文国产乱码在线人妻一区二区 | 国产精品日韩欧美一区二区三区 | 人人舔人人爱 | 特大巨黑人吊性xxxxgay |