PHP
·
发表于 5年以前
·
阅读量:8288
需要从服务器的配置中打开zip模块。
function unzipFile($filePath,$destDir)
{
try {
$zip = new ZipArchive();
if ($zip->open($filePath, ZipArchive::FL_COMPRESSED) === TRUE) {
mkdir($destDir);
$zip->extractTo($destDir);
}
$zip->close();
} catch (\Exception $e) {
}
return $destDir;
}