php ZipArchive压缩函数详解实例

在php中生成zip文件我们只要使用一个php zip压缩ZipArchive函数就可以了,下面小编来给大家总结两个实现一个是利用ZipArchive生成zip,另一个压缩文件夹下所有文件.

用ZipArchive压缩文件,这个是php的扩展类,自php5.2版本以后就已经支持这个扩展,如果你在使用的时候出现错误,查看下php.ini里面的extension=php_zip.dll前面的分号有没有去掉,然后再重启Apache这样才能使用这个类库。

例1、生成zip 压缩文件,代码如下:

  1. /* 生成zip 压缩文件 */
  2. function create_zip($files = array(),$destination = '',$overwrite = false) {
  3. //if the zip file already exists and overwrite is false, return false
  4. if(file_exists($destination) && !$overwrite) { return false; }
  5. //vars
  6. $valid_files = array();
  7. //if files were passed in...
  8. if(is_array($files)) {
  9. //cycle through each file
  10. foreach($files as $file) {
  11. //make sure the file exists
  12. if(file_exists($file)) {
  13. $valid_files[] = $file;
  14. }
  15. }
  16. }
  17. //if we have good files...
  18. if(count($valid_files)) {
  19. //create the archive
  20. $zip = new ZipArchive();
  21. if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
  22. return false;
  23. }
  24. //add the files
  25. foreach($valid_files as $file) {
  26. $file_info_arr= pathinfo($file);
  27. $zip->addFile($file,$file_info_arr['basename']);//去掉层级目录
  28. }
  29. //debug
  30. //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;
  31. //close the zip -- done!
  32. $zip->close();
  33. //check to make sure the file exists
  34. return file_exists($destination);
  35. }
  36. else
  37. {
  38. return false;
  39. }
  40. }
  41. define('ROOTPATH',dirname ( __FILE__ )); //网站路径
  42. $files_to_zip = array(
  43. ROOTPATH.DIRECTORY_SEPARATOR.'PHP+jQuery+Cookbook.pdf',
  44. ROOTPATH.DIRECTORY_SEPARATOR.'TurboListerZeroTemplate.csv'
  45. );
  46. //if true, good; if false, zip creation failed
  47. $filename='my-archive.zip';
  48. $result = create_zip($files_to_zip,$filename);

例2 、压缩文件夹下面的所有文件,代码如下:

  1. <?php
  2. /*
  3. php zip压缩文件夹下面的所有文件
  4. */
  5. class HZip
  6. {
  7. /**
  8. * 添加文件和子目录的文件到zip文件
  9. * @param string $folder
  10. * @param ZipArchive $zipFile
  11. * @param int $exclusiveLength Number of text to be exclusived from the file path.
  12. */
  13. private static function folderToZip($folder, &$zipFile, $exclusiveLength) {
  14. $handle = opendir($folder);
  15. while (false !== $f = readdir($handle)) {
  16. if ($f != '.' && $f != '..') {
  17. $filePath = "$folder/$f";
  18. // Remove prefix from file path before add to zip.
  19. $localPath = substr($filePath, $exclusiveLength);
  20. if (is_file($filePath)) {
  21. $zipFile->addFile($filePath, $localPath);
  22. } elseif (is_dir($filePath)) {
  23. // 添加子文件夹
  24. $zipFile->addEmptyDir($localPath);
  25. self::folderToZip($filePath, $zipFile, $exclusiveLength);
  26. }
  27. }
  28. }
  29. closedir($handle);
  30. }
  31. /**
  32. * Zip a folder (include itself).
  33. * Usage:
  34. * HZip::zipDir('/path/to/sourceDir', '/path/to/out.zip');
  35. *
  36. * @param string $sourcePath Path of directory to be zip.
  37. * @param string $outZipPath Path of output zip file.
  38. */
  39. public static function zipDir($sourcePath, $outZipPath)
  40. {
  41. $pathInfo = pathInfo($sourcePath);
  42. $parentPath = $pathInfo['dirname'];
  43. $dirName = $pathInfo['basename'];
  44. $sourcePath=$parentPath.'/'.$dirName;//防止传递'folder' 文件夹产生bug
  45. $z = new ZipArchive();
  46. $z->open($outZipPath, ZIPARCHIVE::CREATE);//建立zip文件
  47. $z->addEmptyDir($dirName);//建立文件夹
  48. self::folderToZip($sourcePath, $z, strlen("$parentPath/"));
  49. $z->close();
  50. }
  51. }
  52. //使用方法
  53. HZip::zipDir('yourlife', 'yourlife.zip');
  54. ?>

1.ZipArchive::addEmptyDir

添加一个新的文件目录

2.ZipArchive::addFile

将文件添加到指定zip压缩包中。

3.ZipArchive::addFromString

添加的文件同时将内容添加进去

4.ZipArchive::close

关闭ziparchive

5.ZipArchive::extractTo

将压缩包解压

6.ZipArchive::open

打开一个zip压缩包

7.ZipArchive::getStatusString

返回压缩时的状态内容,包括错误信息,压缩信息等等

8.ZipArchive::deleteIndex

删除压缩包中的某一个文件,如:deleteIndex(0)删除第一个文件

9.ZipArchive::deleteName

删除压缩包中的某一个文件名称,同时也将文件删除。