微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php简单创建zip压缩文件的方法

本文实例讲述了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; } }

使用方法

rush: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程序设计有所帮助。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐