open($filePath, ZipArchive::CREATE); foreach ($files as $key => $file) { //检查文件是否存在 if (!file_exists($file)) { return false; } $zip->addFile($file, basename($file)); } $zip->close(); return true; } /** * zip解压方法 * @param string $filePath 压缩包所在地址 【绝对文件地址】d:/test/123.zip * @param string $path 解压路径 【绝对文件目录路径】d:/test * @return bool */ function unzip($filePath, $path) { if (empty($path) || empty($filePath)) { return false; } $zip = new \ZipArchive(); if ($zip->open($filePath) === true) { $zip->extractTo($path); $zip->close(); return true; } else { return false; } } } ?>