php如何?原生zip的測試(純程式碼)

來源:互聯網
上載者:User

這篇文章給大家介紹的文章內容是關於php如何?原生zip的測試(純程式碼),有很好的參考價值,希望可以協助到有需要的朋友。

//簡單測試1 public function zipTest(){        $zip = new \ZipArchive();                $res = $zip->open('static/download/zip/test.zip',\ZipArchive::CREATE);                if ($res === TRUE) {                    echo 'ok';                     $zip->addFromString('test.txt', 'file content goes here');                     //解壓縮到test檔案夾            //$zip->extractTo('test');            $zip->close();        } else {                    echo 'failed, code:' . $res;        }    }    //處理類class FilePackUtil{    /**     * 壓縮成ZIP檔案     * @param array $file 檔案數組     * $file = array('E:/Resources/download.kekedj.com/mp3/XX/20180611/XXX/XXX.mp3', 'E:/Resources/download.kekedj.com/mp3/XX/20180611/XXX/XXX.mp3');     * @param $name 存放名字.zip     * @param $output 存放路徑     * @return bool|string     */    public static function zip($file = array(), $name, $output)    {        if(empty($file)) {                    return "打包檔案為空白";        }                if(empty($name)) {            return "請選擇輸出檔案名";        }                if(empty($output)) {            return "請選擇輸出目錄";        }                foreach ($file as $key => $value) {                    $file [$key] = iconv("UTF-8", "gb2312//IGNORE", $value); //中文名轉換        }                if (! is_dir ( $output )) {            mkdir ( $output, 0777 );        }                $filename = iconv("UTF-8", "gb2312//IGNORE", $output . $name); // 中文名轉換 最終產生的檔案名稱以及伺服器儲存的路徑        if (!file_exists($filename)) {                    //重建檔案            $zip = new ZipArchive (); //使用本類,linux需開啟zlib,windows需取消php_zip.dll前的注釋            if ($zip->open($filename, ZIPARCHIVE::CREATE) !== TRUE) {                            return '無法開啟檔案,或者檔案建立失敗。請檢查路徑、許可權以及環境變數的配置';            }                        foreach ($file as $val) {                            if (file_exists($val)) {                                $fileInfoArr = self::pathInfo($val);                                $zip->addFromString($fileInfoArr ['basename'], file_get_contents($val)); //中文使用這個                }            }                        $zip->close(); //關閉        }                if (!file_exists($filename)) {                    return ("無法找到檔案"); //即使建立,仍有可能失敗。。。。        }                return true;    }        public static function remove($file)    {        if(!$file) return false;                $file = iconv("UTF-8", "gb2312//IGNORE", $file); // 中文名轉換        @unlink($file);        exec("rm -rf " . $file);                return true;    }    /**     * 讀取檔案資訊     * @author ZhiyuanLi < 956889120@qq.com >     * @param $filePath     * @return array     */    private function pathInfo($filePath)    {        $path_parts = array();                $path_parts ['dirname'] = rtrim(substr($filePath, 0, strrpos($filePath, '/')), "/") . "/";                $path_parts ['basename'] = ltrim(substr($filePath, strrpos($filePath, '/')), "/");                $path_parts ['extension'] = substr(strrchr($filePath, '.'), 1);                $path_parts ['filename'] = ltrim(substr($path_parts ['basename'], 0, strrpos($path_parts ['basename'], '.')), "/");                return $path_parts;    }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.