php解压缩 Zip 文件的代码

发布时间:2019-07-15编辑:脚本学堂
php解压缩 Zip 文件的代码,以下示例,使用了php中的ZipArchive。

php解压缩 Zip 文件的代码,有需要的朋友参考下。
以下示例,使用了php中的ZipArchive。
 

复制代码 代码如下:
<?php
/**********************
*@file - path to zip file
*@destination - destination directory for unzipped files
*/
function unzip_file($file, $destination){
// create object
$zip = new ZipArchive() ;
// open archive
if ($zip->open($file) !== TRUE) {
die ('Could not open archive');
}
// extract contents to destination directory
$zip->extractTo($destination);
// close archive
$zip->close();
echo 'Archive extracted to directory';
}
?>