php ziparchive 是php自带的扩展类,可以轻松实现zip文件的压缩和解压,使用前首先要确保php zip 扩展已经开启。 open($destination,$overwrite ? ziparchive::overwrite : ziparchive::create) !== true) { return false; } //向压缩文件中添加文件 foreach($valid_files as $file) { $zip->addfile($file,$file); } //关闭文件 $zip->close(); //检测文件是否存在 return file_exists($destination); }else{return false; } } $files = array('tg.php');create_zip($files,'tg.zip', true);?>
复制代码
文件压缩, php, zip