PHP如何?解壓壓縮包檔案到指定目錄?(純程式碼)

來源:互聯網
上載者:User
本篇文章給大家帶來的內容是關於PHP如何?解壓壓縮包檔案到指定目錄?(純程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

//$src_file為檔案路徑,上傳檔案返回壓縮包路徑即可public function unzip($src_file, $dest_dir=false, $create_zip_name_dir=true, $overwrite=true){        $filePath_arr = [];        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))."/";                }                // 如果不存在 建立目標解壓目錄                $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){                        // 建立目錄 在末尾帶 /                        $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)){                            // 讀取壓縮檔的內容                            $fstream = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));                            @file_put_contents($file_name, $fstream);                            // 設定許可權                            chmod($file_name, 0777);                            echo "save: ".$file_name."<br />";                        }                        // 關閉入口                        zip_entry_close($zip_entry);                    }                }                // 關閉壓縮包                zip_close($zip);            }        }else{            return false;        }        return $filePath_arr;  //返回壓縮後所有檔案路徑    }    /**     * 建立目錄     */    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);                }            }        }    }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.