{"id":918,"date":"2022-06-22T09:29:56","date_gmt":"2022-06-22T01:29:56","guid":{"rendered":"https:\/\/usei.cn\/?p=918"},"modified":"2022-06-22T09:29:57","modified_gmt":"2022-06-22T01:29:57","slug":"php-ziparchive-%e4%b8%ad%e6%96%87%e4%b9%b1%e7%a0%81","status":"publish","type":"post","link":"https:\/\/usei.cn\/index.php\/2022\/06\/22\/php-ziparchive-%e4%b8%ad%e6%96%87%e4%b9%b1%e7%a0%81\/","title":{"rendered":"php ZipArchive \u4e2d\u6587\u4e71\u7801"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>public static function unzip_file(string $zipName,string $dest){\r\n        \/\/\u68c0\u6d4b\u8981\u89e3\u538b\u538b\u7f29\u5305\u662f\u5426\u5b58\u5728\r\n        if(!is_file($zipName)){\r\n            return false;\r\n        }\r\n        \/\/\u68c0\u6d4b\u76ee\u6807\u8def\u5f84\u662f\u5426\u5b58\u5728\r\n        if(!is_dir($dest)){\r\n            mkdir($dest,0777,true);\r\n        }\r\n        $zip=new ZipArchive();\r\n        $res = $zip->open($zipName);\r\n        if ($res !== true){\r\n            throw new \\Exception('\u6253\u5f00\u538b\u7f29\u5305\u5931\u8d25');\r\n        }\r\n\r\n        \/\/ \u52a0\u5165\u6b64\u6bb5\u2193\r\n        $fileNum = $zip->numFiles;\r\n        for ($i = 0; $i &lt; $fileNum; $i++) {\r\n            $statInfo = $zip->statIndex($i, ZipArchive::FL_ENC_RAW);\r\n            $zip->renameIndex($i, iconv('GBK', 'utf-8\/\/IGNORE', $statInfo&#91;'name']));\r\n        }\r\n        $zip->close();\r\n        $zip->open($zipName);\r\n        \/\/ \u622a\u81f3\u2191\r\n        $zip->extractTo($dest);\r\n        $zip->close();\r\n    }<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-918","post","type-post","status-publish","format-standard","hentry","category-php"],"_links":{"self":[{"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/posts\/918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/comments?post=918"}],"version-history":[{"count":1,"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/posts\/918\/revisions"}],"predecessor-version":[{"id":919,"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/posts\/918\/revisions\/919"}],"wp:attachment":[{"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/media?parent=918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/categories?post=918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/usei.cn\/index.php\/wp-json\/wp\/v2\/tags?post=918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}