溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP如何解壓ZIP文件到指定文件夾

發(fā)布時間:2021-08-30 15:30:54 來源:億速云 閱讀:154 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“PHP如何解壓ZIP文件到指定文件夾”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“PHP如何解壓ZIP文件到指定文件夾”這篇文章吧。

具體如下:

/**
 * function: 解壓zip 格式的文件
 * author:friker
 * date:2015-15-14
 * reference:http://php.net/manual/zh/ref.zip.php
 * all rights reserved:wujiangwei123@126.com
 */
class Unzip{
  public function __construct(){
    //init code here...
    header("content-type:text/html;charset=utf8");
  }
  /**
  * 解壓文件到指定目錄
  *
  * @param  string  zip壓縮文件的路徑
  * @param  string  解壓文件的目的路徑
  * @param  boolean 是否以壓縮文件的名字創(chuàng)建目標文件夾
  * @param  boolean 是否重寫已經(jīng)存在的文件
  *
  * @return boolean 返回成功 或失敗
  */
  public function unzip($src_file, $dest_dir=false, $create_zip_name_dir=true, $overwrite=true){
  if ($zip = zip_open($src_file)){
    if ($zip){
      $splitter = ($create_zip_name_dir === true) ? "." : "/";
      if($dest_dir === false){
        $dest_dir = substr($src_file, 0, strrpos($src_file, $splitter))."/";
      }
      // 如果不存在 創(chuàng)建目標解壓目錄
      $this->create_dirs($dest_dir);
       // 對每個文件進行解壓
       while ($zip_entry = zip_read($zip)){
          // 文件不在根目錄
          $pos_last_slash = strrpos(zip_entry_name($zip_entry), "/");
          if ($pos_last_slash !== false){
            // 創(chuàng)建目錄 在末尾帶 /
            $this->create_dirs($dest_dir.substr(zip_entry_name($zip_entry), 0, $pos_last_slash+1));
          }
          // 打開包
          if (zip_entry_open($zip,$zip_entry,"r")){
            // 文件名保存在磁盤上
            $file_name = $dest_dir.zip_entry_name($zip_entry);
            // 檢查文件是否需要重寫
            if ($overwrite === true || $overwrite === false && !is_file($file_name)){
              // 讀取壓縮文件的內(nèi)容
              $fstream = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
              @file_put_contents($file_name, $fstream);
              // 設(shè)置權(quán)限
              chmod($file_name, 0777);
              echo "save: ".$file_name."<br />";
            }
            // 關(guān)閉入口
            zip_entry_close($zip_entry);
          }
        }
        // 關(guān)閉壓縮包
        zip_close($zip);
      }
    }else{
      return false;
    }
    return true;
  }
  /**
  * 創(chuàng)建目錄
  */
  public function create_dirs($path){
   if (!is_dir($path)){
     $directory_path = "";
     $directories = explode("/",$path);
     array_pop($directories);
     foreach($directories as $directory){
       $directory_path .= $directory."/";
       if (!is_dir($directory_path)){
         mkdir($directory_path);
         chmod($directory_path, 0777);
       }
     }
   }
  }
}
/*
 using:
 $z = new Unzip();
 $z->unzip("./bootstrap-3.3.4.zip",'./unzipres/', true, false);
*/

以上是“PHP如何解壓ZIP文件到指定文件夾”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI