PHP Zip解压 文件在线解压缩的函数代码

前端之家收集整理的这篇文章主要介绍了PHP Zip解压 文件在线解压缩的函数代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="79088" class="copybut" id="copybut79088" onclick="doCopy('code79088')"> 代码如下:

<div class="codebody" id="code79088">
/**
@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';
}

PHP Zip压缩 在线对文件进行压缩的函数

猜你在找的PHP相关文章