筆記:ZipArchive 打包 zip

Diego_crazy發表於2021-07-02

使用ZipArchive打包檔案或資料夾,採用最後一層資料夾目錄作為打包檔案的根目錄:

<?php


namespace App\Service;


class ZipService
{

    public $zipObj;

    public function __construct()
    {
        $this->zipObj = new \ZipArchive();

    }

    /**
     * zip 資料夾打包
     * @param $filePath     | 打包的檔案路徑
     * @param $zipFileName  | 生成的zip檔案路徑
     * @return array|bool
     */
    public function createZip($filePath, $zipFileName)
    {
        $zip = $this->zipObj;
        if (!$zip->open($zipFileName, $zip::CREATE)) {
            $msg =  "建立" . $zipFileName . "失敗";
            return ['ok' => false, 'msg' => $msg];
        }

        //以最後的資料夾作為打包檔案的根路徑
        $dirArr = explode(DIRECTORY_SEPARATOR, $filePath);
        $zipFilePath = $dirArr[count($dirArr) - 1] . DIRECTORY_SEPARATOR;
        $this->addFileToZip($filePath, $zip, $zipFilePath);

        $zip->close();
        return true;
    }

    /**
     * zip 檔案新增操作
     * @param $filePath     | 打包的檔案路徑
     * @param $zip          | ZipArchive物件
     * @param $zipRootPath  | zip檔案的根目錄路徑
     */
    function addFileToZip($filePath, $zip, $zipRootPath)
    {
        $handler = opendir($filePath);
        /**
         * 其中 $filename = readdir($handler) 是每次迴圈的時候將讀取的檔名賦值給 $filename,為了不陷於死迴圈,所以還要讓 $filename !== false
         */
        while (($filename = readdir($handler)) !== false) {
            if ($filename != "." && $filename != "..") {
                // 對於資料夾,is_dir會返回TRUE,注意路徑是 $newPath
                $newPath = $filePath . DIRECTORY_SEPARATOR . $filename;
                if (is_dir($newPath)) {
                    $nowPath = $zipRootPath . $filename . DIRECTORY_SEPARATOR;
                    $this->addFileToZip($newPath, $zip, $nowPath);
                } else {
                    //檔案加入zip物件
                    $zip->addFile($newPath, $zipRootPath . $filename);
                }
            }
        }

        closedir($handler);
    }

}
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章