天天减肥网,内容丰富有趣,生活中的好帮手!
天天减肥网 > PHP之Zip扩展 解压缩文件 ZipArchive类

PHP之Zip扩展 解压缩文件 ZipArchive类

时间:2023-09-19 12:09:41

相关推荐

PHP之Zip扩展 解压缩文件 ZipArchive类

PHP ZipArchive 是PHP自带的扩展类,可以轻松实现ZIP文件的压缩和解压,使用前首先要确保PHP ZIP 扩展已经开启,具体开启方法就不说了,不同的平台开启PHP扩增的方法网上都有,如有疑问欢迎交流。这里整理一下常用的示例供参考。

ZipArchive类中的常用方法

<?php$zip = new ZipArchive();//新建一个对象/* $zip->open这个方法第一个参数表示处理的zip文件名。 第二个参数表示处理模式,ZipArchive::OVERWRITE表示如果zip文件存在,就覆盖掉原来的zip文件。 如果参数使用ZIPARCHIVE::CREATE,系统就会往原来的zip文件里添加内容。 如果不是为了多次添加内容到zip文件,建议使用ZipArchive::OVERWRITE。 使用这两个参数,如果zip文件不存在,系统都会自动新建。 如果对zip文件对象操作成功,$zip->open这个方法会返回TRUE*/if ($zip->open('demo.zip', ZipArchive::OVERWRITE) === TRUE) {/* ZipArchive类中的所有属性*/echo $zip->status;//Zip Archive 的状态echo $zip->statusSys;//Zip Archive 的系统状态echo $zip->numFiles;//压缩包里的文件数echo $zip->filename;//在文件系统里的文件名,包含绝对路径echo $zip->comment;//压缩包的注释/* ZipArchive类中的常用方法*/$zip->addEmptyDir('css');//在zip压缩包中建一个空文件夹,成功时返回 TRUE, 或者在失败时返回 FALSE$zip->addFile('index.html','in.html');//在zip更目录添加一个文件,并且命名为in.html,第二个参数可以省略$zip->addFromString('in.html','hello world');//往zip中一个文件中添加内容$zip->extractTo('/tmp/zip/');//解压文件到/tmp/zip/文件夹下面$zip->renameName('in.html','index.html');//重新命名zip里面的文件$zip->setArchiveComment('Do what you love,Love what you do.');//设置压缩包的注释$zip->getArchiveComment();//获取压缩包的注释$zip->getFromName('index.html');//获取压缩包文件的内容$zip->deleteName('index.html');//删除文件$zip->setPassword('123456');//设置压缩包的密码$zip->close();//关闭资源句柄}else{echo '文件打开失败';}

一、解压缩zip文件

$zip = new ZipArchive;//新建一个ZipArchive的对象/*通过ZipArchive的对象处理zip文件$zip->open这个方法的参数表示处理的zip文件名。如果对zip文件对象操作成功,$zip->open这个方法会返回TRUE*/if ($zip->open('test.zip') === TRUE){$zip->extractTo('images');//假设解压缩到在当前路径下images文件夹的子文件夹php$zip->close();//关闭处理的zip文件}

二、将文件压缩成zip文件

$zip = new ZipArchive;/*$zip->open这个方法第一个参数表示处理的zip文件名。第二个参数表示处理模式,ZipArchive::OVERWRITE表示如果zip文件存在,就覆盖掉原来的zip文件。如果参数使用ZIPARCHIVE::CREATE,系统就会往原来的zip文件里添加内容。如果不是为了多次添加内容到zip文件,建议使用ZipArchive::OVERWRITE。使用这两个参数,如果zip文件不存在,系统都会自动新建。如果对zip文件对象操作成功,$zip->open这个方法会返回TRUE*/if ($zip->open('test.zip', ZipArchive::OVERWRITE) === TRUE){$zip->addFile('image.txt');//假设加入的文件名是image.txt,在当前路径下$zip->close();}

三、文件追加内容添加到zip文件

$zip = new ZipArchive;$res = $zip->open('test.zip', ZipArchive::CREATE);if ($res === TRUE) {$zip->addFromString('test.txt', 'file content goes here');$zip->close();echo 'ok';} else {echo 'failed';}

四、将文件夹打包成zip文件

function addFileToZip($path, $zip) {$handler = opendir($path); //打开当前文件夹由$path指定。/*循环的读取文件夹下的所有文件和文件夹其中$filename = readdir($handler)是每次循环的时候将读取的文件名赋值给$filename,为了不陷于死循环,所以还要让$filename !== false。一定要用!==,因为如果某个文件名如果叫'0',或者某些被系统认为是代表false,用!=就会停止循环*/while (($filename = readdir($handler)) !== false) {if ($filename != "." && $filename != "..") {//文件夹文件名字为'.'和‘..’,不要对他们进行操作if (is_dir($path . "/" . $filename)) {// 如果读取的某个对象是文件夹,则递归addFileToZip($path . "/" . $filename, $zip);} else { //将文件加入zip对象$zip->addFile($path . "/" . $filename);}}}@closedir($path);}$zip = new ZipArchive();if ($zip->open('images.zip', ZipArchive::OVERWRITE) === TRUE) {addFileToZip('images/', $zip); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法$zip->close(); //关闭处理的zip文件}

五、几行代码实现PHP文件打包下载zip

<?php /*** 没有写成class 或者 function ,需要的朋友自己写,就这么几行。。*/ $filename = "./test/test.zip"; //最终生成的文件名(含路径) if(!file_exists($filename)){ //重新生成文件 $zip = new ZipArchive();//使用本类,linux需开启zlib,windows需取消php_zip.dll前的注释 if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) { exit('无法打开文件,或者文件创建失败');} foreach( $datalist as $val){ $attachfile = $attachmentDir . $val['filepath']; //获取原始文件路径 if(file_exists($attachfile)){ $zip->addFile( $attachfile , basename($attachfile));//第二个参数是放在压缩包中的文件名称,如果文件可能会有重复,就需要注意一下 } } $zip->close();//关闭 } if(!file_exists($filename)){ exit("无法找到文件"); //即使创建,仍有可能失败。。。。 } header("Cache-Control: public"); header("Content-Description: File Transfer"); header('Content-disposition: attachment; filename='.basename($filename)); //文件名 header("Content-Type: application/zip"); //zip格式的 header("Content-Transfer-Encoding: binary"); //告诉浏览器,这是二进制文件 header('Content-Length: '. filesize($filename)); //告诉浏览器,文件大小 @readfile($filename);?>

另外ZipArchive相关方法如下:

ZipArchive::addEmptyDir— Add a new directoryZipArchive::addFile— Adds a file to a ZIP archive from the given pathZipArchive::addFromString— Add a file to a ZIP archive using its contentsZipArchive::addGlob— Add files from a directory by glob patternZipArchive::addPattern— Add files from a directory by PCRE patternZipArchive::close— Close the active archive (opened or newly created)ZipArchive::deleteIndex— delete an entry in the archive using its indexZipArchive::deleteName— delete an entry in the archive using its nameZipArchive::extractTo— Extract the archive contentsZipArchive::getArchiveComment— Returns the Zip archive commentZipArchive::getCommentIndex— Returns the comment of an entry using the entry indexZipArchive::getCommentName— Returns the comment of an entry using the entry nameZipArchive::getExternalAttributesIndex— Retrieve the external attributes of an entry defined by its indexZipArchive::getExternalAttributesName— Retrieve the external attributes of an entry defined by its nameZipArchive::getFromIndex— Returns the entry contents using its indexZipArchive::getFromName— Returns the entry contents using its nameZipArchive::getNameIndex— Returns the name of an entry using its indexZipArchive::getStatusString— Returns the status error message, system and/or zip messagesZipArchive::getStream— Get a file handler to the entry defined by its name (read only).ZipArchive::locateName— Returns the index of the entry in the archiveZipArchive::open— Open a ZIP file archiveZipArchive::renameIndex— Renames an entry defined by its indexZipArchive::renameName— Renames an entry defined by its nameZipArchive::setArchiveComment— Set the comment of a ZIP archiveZipArchive::setCommentIndex— Set the comment of an entry defined by its indexZipArchive::setCommentName— Set the comment of an entry defined by its nameZipArchive::setExternalAttributesIndex— Set the external attributes of an entry defined by its indexZipArchive::setExternalAttributesName— Set the external attributes of an entry defined by its nameZipArchive::statIndex— Get the details of an entry defined by its index.ZipArchive::statName— Get the details of an entry defined by its name.ZipArchive::unchangeAll— Undo all changes done in the archiveZipArchive::unchangeArchive— Revert all global changes done in the archive.ZipArchive::unchangeIndex— Revert all changes done to an entry at the given indexZipArchive::unchangeName— Revert all changes done to an entry with the given name.

如果觉得《PHP之Zip扩展 解压缩文件 ZipArchive类》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。