PHP解压缩 Zip 文件

2015-01-18 0 495
PHP解压缩 Zip 文件
/**********************
 *@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 PHP解压缩 Zip 文件 http://www.ox520.com/7243.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务