本文实例讲述了PHP简单创建zip压缩文件的方法。分享给大家供大家参考,具体如下:
open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
return false;
}
//add the files
foreach($valid_files as $file) {
$zip->addFile($file,$file);
}
//debug
//echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;
//close the zip -- done!
$zip->close();
//check to make sure the file exists
return file_exists($destination);
}
else
{
return false;
}
}
使用方法:
PHP;">
$files_to_zip = array(
'preload-images/1.jpg','preload-images/2.jpg','preload-images/5.jpg','kwicks/ringo.gif','rod.jpg','reddit.gif'
);
//if true,good; if false,zip creation Failed
$result = create_zip($files_to_zip,'my-archive.zip');
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。