免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2349 | 回复: 0
打印 上一主题 下一主题

我用IE下载的RAR文件打开要报“不可预料的压缩文件末端”的错误 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-03-06 11:51 |只看该作者 |倒序浏览

  1. class download{
  2.   var $debug=true;
  3.   var $errormsg='';
  4.   var $Filter=array();
  5.   var $filename='';
  6.   var $mineType='text/plain';
  7.   var $xlq_filetype=array();

  8.   function download($fileFilter='',$isdebug=true)
  9.   {
  10.     $this->setFilter($fileFilter);
  11.         $this->setdebug($isdebug);        
  12.         $this->setfiletype();
  13.   }
  14.   
  15.   function setFilter($fileFilter)
  16.   {
  17.     if(empty($fileFilter)) return ;
  18.         $this->Filter=explode(',',strtolower($fileFilter));
  19.   }
  20.   function setdebug($debug)
  21.   {
  22.     $this->debug=$debug;
  23.   }
  24.   
  25.   function setfilename($filename)
  26.   {
  27.     $this->filename=$filename;
  28.   }
  29.   
  30.   function downloadfile($filename)
  31.   {
  32.     $this->setfilename($filename);
  33.     if($this->filecheck())
  34.         {
  35.           echo $fn = array_pop( explode( '/', strtr( $this->filename, '', '/' ) ) );
  36.           header( "Pragma: public" );
  37.         header( "Expires: 0" ); // set expiration time
  38.         header( "Cache-Control: must-revalidate, post-check=0, pre-check=0");
  39.         header( "Cache-Component: must-revalidate, post-check=0, pre-check=0" );
  40.         header( "Content-type:".$this->mineType );
  41.         header( "Content-Length: " . filesize( $this->filename ) );
  42.         header( "Content-Disposition: attachment; filename=".$fn."");
  43.         header( 'Content-Transfer-Encoding: binary' );
  44.         readfile( $this->filename );
  45.         return true;
  46.         }else
  47.         {
  48.         return false;
  49.         }
  50.   }
  51.   function geterrormsg()
  52.   {
  53.     return $this->errormsg;
  54.   }
  55.   
  56.   function filecheck()
  57.   {
  58.     $filename=$this->filename;
  59.         if(file_exists($filename))
  60.         {
  61.            $filetype=strtolower(array_pop(explode('.',$filename)));
  62.            if(in_array($filetype,$this->Filter))
  63.            {
  64.              $this->errormsg.=$filename.'不允许下载!';
  65.                  if($this->debug) exit($filename.'不允许下载!') ;
  66.                  return false;
  67.            }else
  68.            {
  69.              if ( function_exists( "mime_content_type" ) )
  70.                  {
  71.            $this->mineType = mime_content_type( $filename );
  72.          }
  73.                  if(empty($this->mineType))
  74.                  {
  75.                     if( isset($this->xlq_filetype[$filetype]) )  $this->mineType = $this->xlq_filetype[$filetype];
  76.                  }
  77.                  if(!empty($this->mineType))
  78.                    return true;
  79.                  else
  80.                  {
  81.                     $this->errormsg.='获取'.$filename.'文件类型时候发生错误,或者不存在预定文件类型内';
  82.                         if($this->debug) exit('获取文件类型出错');
  83.                         return false;
  84.                  }
  85.            }
  86.         }else
  87.         {
  88.           $this->errormsg.=$filename.'不存在!';
  89.           if($this->debug) exit($filename.'不存在!') ;
  90.           return false;
  91.         }
  92.   }
  93.   
  94.   function setfiletype()
  95.   {
  96.     $this->xlq_filetype['chm']='application/octet-stream';
  97.     $this->xlq_filetype['ppt']='application/vnd.ms-powerpoint';
  98.     $this->xlq_filetype['xls']='application/vnd.ms-excel';
  99.     $this->xlq_filetype['doc']='application/msword';
  100.     $this->xlq_filetype['exe']='application/octet-stream';
  101.     $this->xlq_filetype['rar']='application/octet-stream';
  102.     $this->xlq_filetype['js']="javascrīpt/js";
  103.     $this->xlq_filetype['css']="text/css";
  104.     $this->xlq_filetype['hqx']="application/mac-binhex40";
  105.     $this->xlq_filetype['bin']="application/octet-stream";
  106.     $this->xlq_filetype['oda']="application/oda";
  107.     $this->xlq_filetype['pdf']="application/pdf";
  108.     $this->xlq_filetype['ai']="application/postsrcipt";
  109.     $this->xlq_filetype['eps']="application/postsrcipt";
  110.     $this->xlq_filetype['es']="application/postsrcipt";
  111.     $this->xlq_filetype['rtf']="application/rtf";
  112.     $this->xlq_filetype['mif']="application/x-mif";
  113.     $this->xlq_filetype['csh']="application/x-csh";
  114.     $this->xlq_filetype['dvi']="application/x-dvi";
  115.     $this->xlq_filetype['hdf']="application/x-hdf";
  116.     $this->xlq_filetype['nc']="application/x-netcdf";
  117.     $this->xlq_filetype['cdf']="application/x-netcdf";
  118.     $this->xlq_filetype['latex']="application/x-latex";
  119.     $this->xlq_filetype['ts']="application/x-troll-ts";
  120.     $this->xlq_filetype['src']="application/x-wais-source";
  121.     $this->xlq_filetype['zip']="application/zip";
  122.     $this->xlq_filetype['bcpio']="application/x-bcpio";
  123.     $this->xlq_filetype['cpio']="application/x-cpio";
  124.     $this->xlq_filetype['gtar']="application/x-gtar";
  125.     $this->xlq_filetype['shar']="application/x-shar";
  126.     $this->xlq_filetype['sv4cpio']="application/x-sv4cpio";
  127.     $this->xlq_filetype['sv4crc']="application/x-sv4crc";
  128.     $this->xlq_filetype['tar']="application/x-tar";
  129.     $this->xlq_filetype['ustar']="application/x-ustar";
  130.     $this->xlq_filetype['man']="application/x-troff-man";
  131.     $this->xlq_filetype['sh']="application/x-sh";
  132.     $this->xlq_filetype['tcl']="application/x-tcl";
  133.     $this->xlq_filetype['tex']="application/x-tex";
  134.     $this->xlq_filetype['texi']="application/x-texinfo";
  135.     $this->xlq_filetype['texinfo']="application/x-texinfo";
  136.     $this->xlq_filetype['t']="application/x-troff";
  137.     $this->xlq_filetype['tr']="application/x-troff";
  138.     $this->xlq_filetype['roff']="application/x-troff";
  139.     $this->xlq_filetype['shar']="application/x-shar";
  140.     $this->xlq_filetype['me']="application/x-troll-me";
  141.     $this->xlq_filetype['ts']="application/x-troll-ts";
  142.     $this->xlq_filetype['gif']="image/gif";
  143.     $this->xlq_filetype['jpeg']="image/pjpeg";
  144.     $this->xlq_filetype['jpg']="image/pjpeg";
  145.     $this->xlq_filetype['jpe']="image/pjpeg";
  146.     $this->xlq_filetype['ras']="image/x-cmu-raster";
  147.     $this->xlq_filetype['pbm']="image/x-portable-bitmap";
  148.     $this->xlq_filetype['ppm']="image/x-portable-pixmap";
  149.     $this->xlq_filetype['xbm']="image/x-xbitmap";
  150.     $this->xlq_filetype['xwd']="image/x-xwindowdump";
  151.     $this->xlq_filetype['ief']="image/ief";
  152.     $this->xlq_filetype['tif']="image/tiff";
  153.     $this->xlq_filetype['tiff']="image/tiff";
  154.     $this->xlq_filetype['pnm']="image/x-portable-anymap";
  155.     $this->xlq_filetype['pgm']="image/x-portable-graymap";
  156.     $this->xlq_filetype['rgb']="image/x-rgb";
  157.     $this->xlq_filetype['xpm']="image/x-xpixmap";
  158.     $this->xlq_filetype['txt']="text/plain";
  159.     $this->xlq_filetype['c']="text/plain";
  160.     $this->xlq_filetype['cc']="text/plain";
  161.     $this->xlq_filetype['h']="text/plain";
  162.     $this->xlq_filetype['html']="text/html";
  163.     $this->xlq_filetype['htm']="text/html";
  164.     $this->xlq_filetype['htl']="text/html";
  165.     $this->xlq_filetype['rtx']="text/richtext";
  166.     $this->xlq_filetype['etx']="text/x-setext";
  167.     $this->xlq_filetype['tsv']="text/tab-separated-values";
  168.     $this->xlq_filetype['mpeg']="video/mpeg";
  169.     $this->xlq_filetype['mpg']="video/mpeg";
  170.     $this->xlq_filetype['mpe']="video/mpeg";
  171.     $this->xlq_filetype['avi']="video/x-msvideo";
  172.     $this->xlq_filetype['qt']="video/quicktime";
  173.     $this->xlq_filetype['mov']="video/quicktime";
  174.     $this->xlq_filetype['moov']="video/quicktime";
  175.     $this->xlq_filetype['movie']="video/x-sgi-movie";
  176.     $this->xlq_filetype['au']="audio/basic";
  177.     $this->xlq_filetype['snd']="audio/basic";
  178.     $this->xlq_filetype['wav']="audio/x-wav";
  179.     $this->xlq_filetype['aif']="audio/x-aiff";
  180.     $this->xlq_filetype['aiff']="audio/x-aiff";
  181.     $this->xlq_filetype['aifc']="audio/x-aiff";
  182.     $this->xlq_filetype['swf']="application/x-shockwave-flash";
  183.   }
  184. }


  185. $download=new download('php,exe',false);
  186. if(!$download->downloadfile($desta))
  187. {
  188.   echo $download->geterrormsg();
  189. }

复制代码


该文件用FTP下载没有问题
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP