PHP Zip压缩 在线对文件进行压缩的函数
作者:bea
代码如下: /* creates a compressed zip file */ function create_zip($files = array(),$destination = '',$overwrite = false) { //if the zip file already exists and overwrite is false, return false if(file_exists($destination) && !$ove
代码如下:
/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = false) {
//if the zip file already exists and overwrite is false, return 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
{
return false;
}
}
/***** Example Usage ***/
$files=array('file1.jpg', 'file2.jpg', 'file3.gif');
create_zip($files, 'myzipfile.zip', true);
PHP Zip 文件在线解压缩的函数代码
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP stristr() 函数(不区分大小写的字符串查找)
- php strstr查找字符串中是否包含某些字符的查找函数
- javascript 小型动画组件与实现代码
- php 验证码实例代码
- php trim 去除空字符的定义与语法介绍
- phpmyadmin 3.4 空密码登录的实现方法
- Discuz!下Memcache缓存实现方法
- 备份mysql数据库的php代码(一个表一个文件)
- php下将图片以二进制存入mysql数据库中并显示的实现代码
- php set_time_limit(0) 设置程序执行时间的函数
- PHP 可阅读随机字符串代码
- PHP 一个随机字符串生成代码
- PHP 循环列出目录内容的函数代码
- PHP 删除一个目录及目录下的所有文件的函数代码
- PHP JSON 数据解析代码
- PHP XML数据解析代码
- PHP 日志缩略名的创建函数代码
- PHP similar_text 字符串的相似性比较函数
- PHP Zip解压 文件在线解压缩的函数代码