-
- /* @creates a compressed zip file 将多个文件压缩成一个zip文件的函数
- * @$files 数组类型 实例array("1.jpg","2.jpg");
- * @destination 目标文件的路径 如"c:/androidyue.zip"
- * @$overwrite 是否为覆盖与目标文件相同的文件
- * @site http://bbs.it-home.org
- */
- function create_zip($files = array(),$destination = '',$overwrite = false) {
- //if the zip file already exists and overwrite is false, return false
- //如果zip文件已经存在并且设置为不重写返回false
- if(file_exists($destination) && !$overwrite) { return false; }
- //vars
- $valid_files = array();
- //if files were passed in...
- //获取到真实有效的文件名
- if(is_array($files)) {
- //cycle through each file
- foreach($files as $file) {
- //make sure the file exists
- if(file_exists($file)) {
- $valid_files[] = $file;
- }
- }
- }
- //if we have good files...
- //如果存在真实有效的文件
- if(count($valid_files)) {
- //create the archive
- $zip = new ZipArchive();
- //打开文件 如果文件已经存在则覆盖,如果没有则创建
- if($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{
- //如果没有真实有效的文件返回false
- return false;
- }
- }
- /****
- //测试函数
- $files=array('temp.php','test.php');
- create_zip($files, 'myzipfile.zip', true);
- ****/
- ?>
复制代码
|
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31