php 解压zip

/**
     * 解压zip
     * @param type $file
     * @param type $destination
     * @return boolean
     */
    public function unzip_file($file, $destination){ 
      $zip = new ZipArchive() ; 
      if ($zip->open($file) !== TRUE) {
          return $this->error('Could not open archive,PHP ZipArchive must support and compressed without damage'); 
      } 
      $zip->extractTo($destination); 
      $zip->close();
      return TRUE;
    }


你可能感兴趣的:(ZipArchive)