如何使用PHP压缩整个文件夹


131

我在stackoveflow上找到了一些关于如何压缩特定文件的代码,但是特定文件夹又如何呢?

Folder/
  index.html
  picture.jpg
  important.txt

在中My Folder,有文件。压缩后My Folder,我还想删除文件夹的全部内容,除了important.txt

堆栈中找到这个

我需要你的帮助。谢谢。


据我所知,您提供的stackoverflow链接实际上压缩了多个文件。您在哪一部分遇到问题?
Lasse Espeholt 2011年

@lasseespeholt我给你的拉链只是一个特定的文件,而不是文件夹和文件夹的内容链接..
woninana

他获取一个文件数组(基本上是一个文件夹),并将所有文件添加到zip文件中(循环)。我可以看到一个很好的答案现在已经发布+1 :),这是相同的代码,该数组现在只是目录中文件的列表。
Lasse Espeholt 2011年


Answers:


320

代码已于2015/04/22更新。

压缩整个文件夹:

// Get real path for our folder
$rootPath = realpath('folder-to-zip');

// Initialize archive object
$zip = new ZipArchive();
$zip->open('file.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE);

// Create recursive directory iterator
/** @var SplFileInfo[] $files */
$files = new RecursiveIteratorIterator(
    new RecursiveDirectoryIterator($rootPath),
    RecursiveIteratorIterator::LEAVES_ONLY
);

foreach ($files as $name => $file)
{
    // Skip directories (they would be added automatically)
    if (!$file->isDir())
    {
        // Get real and relative path for current file
        $filePath = $file->getRealPath();
        $relativePath = substr($filePath, strlen($rootPath) + 1);

        // Add current file to archive
        $zip->addFile($filePath, $relativePath);
    }
}

// Zip archive will be created only after closing object
$zip->close();

压缩整个文件夹+删除除“ important.txt”以外的所有文件:

// Get real path for our folder
$rootPath = realpath('folder-to-zip');

// Initialize archive object
$zip = new ZipArchive();
$zip->open('file.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE);

// Initialize empty "delete list"
$filesToDelete = array();

// Create recursive directory iterator
/** @var SplFileInfo[] $files */
$files = new RecursiveIteratorIterator(
    new RecursiveDirectoryIterator($rootPath),
    RecursiveIteratorIterator::LEAVES_ONLY
);

foreach ($files as $name => $file)
{
    // Skip directories (they would be added automatically)
    if (!$file->isDir())
    {
        // Get real and relative path for current file
        $filePath = $file->getRealPath();
        $relativePath = substr($filePath, strlen($rootPath) + 1);

        // Add current file to archive
        $zip->addFile($filePath, $relativePath);

        // Add current file to "delete list"
        // delete it later cause ZipArchive create archive only after calling close function and ZipArchive lock files until archive created)
        if ($file->getFilename() != 'important.txt')
        {
            $filesToDelete[] = $filePath;
        }
    }
}

// Zip archive will be created only after closing object
$zip->close();

// Delete all files from "delete list"
foreach ($filesToDelete as $file)
{
    unlink($file);
}

2
您必须将dir(位于此脚本所在的位置)上的chmod(可写)设置为777。例如:如果脚本位于/var/www/localhost/script.php中,则需要在dir / var / www / localhost上设置chmod 0777 /。
Dador

3
调用前删除文件$zip->close()将不起作用。在这里
hek2mgl 2014年

10
@alnassre这是问题的要求:“我还想删除文件夹的全部内容,但重要的.txt除外”。我也建议您在执行代码之前务必先阅读代码。
Dador

1
@alnassre haha​​haha ...抱歉:) ... haha​​ha
Ondrej Rafaj 2015年

1
@ nick-newman,是的,要计算百分比,您可以在循环内使用php.net/manual/ru/function.iterator-count.php +计数器。关于压缩级别-目前尚无法使用ZipArchive:stackoverflow.com/questions/1833168/…–
Dador

54

ZipArchive类中有一个有用的未记录方法:addGlob();

$zipFile = "./testZip.zip";
$zipArchive = new ZipArchive();

if ($zipArchive->open($zipFile, (ZipArchive::CREATE | ZipArchive::OVERWRITE)) !== true)
    die("Failed to create archive\n");

$zipArchive->addGlob("./*.txt");
if ($zipArchive->status != ZIPARCHIVE::ER_OK)
    echo "Failed to write files to zip\n";

$zipArchive->close();

现在记录在:www.php.net/manual/en/ziparchive.addglob.php


2
@netcoder-编写用于测试它的phpt的好处...基本上,通读ZipArchive类的源代码,然后在那找到它....还有一个未公开的addPattern()方法,它采用正则表达式样式,但我从来没有设法做到这一点(可能是班上的一个错误)
Mark Ba​​ker

1
@kread-您可以将其用于可以使用glob()提取的任何文件列表,因此自发现以来,我发现它非常有用。
马克·贝克

@MarkBaker我知道此评论将在您发布多年后发布,我只是在这里试试运气。我在这里也发布了有关压缩的问题。我将尝试使用您在此处发布的glob方法,但是我的主要问题是我无法使用addFromString,并且一直在使用addFile,这只是默默地失败了。您是否有任何想法可能出问题了,或者我可能做错了什么?
Skytiger 2015年

@ user1032531-我的帖子的最后一行(2013年12月13日编辑)表明了这一点,并带有指向文档页面的链接
Mark Ba​​ker

6
addGlob递归的吗?
Vincent Poirier

20

试试这个:

$zip = new ZipArchive;
$zip->open('myzip.zip', ZipArchive::CREATE);
foreach (glob("target_folder/*") as $file) {
    $zip->addFile($file);
    if ($file != 'target_folder/important.txt') unlink($file);
}
$zip->close();

但是,这不会递归压缩。


它肯定会删除中的某些文件My folder,但我在文件夹中也有一个文件夹My folder,这给我一个错误:通过取消与in的链接来拒绝权限My folder
woninana 2011年

@Stupefy:试试吧if (!is_dir($file) && $file != 'target_folder...')。或者,如果要递归压缩,请检查@kread答案,这是最有效的方法。
netcoder 2011年

中的文件夹My folder仍未删除,但是仍然没有其他错误。
woninana 2011年

我也忘记提到我没有创建.zip文件。
woninana 2011年

1
调用前删除文件$zip->close()将不起作用。在这里
hek2mgl 2014年

19

我假设它在zip应用程序在搜索路径中的服务器上运行。对于所有基于unix的服务器都应该是真实的,我猜大多数基于Windows的服务器都应该如此。

exec('zip -r archive.zip "My folder"');
unlink('My\ folder/index.html');
unlink('My\ folder/picture.jpg');

之后,存档将驻留在archive.zip中。请记住,文件或文件夹名称中的空格是导致错误的常见原因,应尽可能避免。


15

我尝试使用下面的代码,它正在工作。该代码是自解释性的,如果您有任何疑问,请告诉我。

<?php
class FlxZipArchive extends ZipArchive 
{
 public function addDir($location, $name) 
 {
       $this->addEmptyDir($name);
       $this->addDirDo($location, $name);
 } 
 private function addDirDo($location, $name) 
 {
    $name .= '/';
    $location .= '/';
    $dir = opendir ($location);
    while ($file = readdir($dir))
    {
        if ($file == '.' || $file == '..') continue;
        $do = (filetype( $location . $file) == 'dir') ? 'addDir' : 'addFile';
        $this->$do($location . $file, $name . $file);
    }
 } 
}
?>

<?php
$the_folder = '/path/to/folder/to/be/zipped';
$zip_file_name = '/path/to/zip/archive.zip';
$za = new FlxZipArchive;
$res = $za->open($zip_file_name, ZipArchive::CREATE);
if($res === TRUE) 
{
    $za->addDir($the_folder, basename($the_folder));
    $za->close();
}
else{
echo 'Could not create a zip archive';
}
?>

优秀的解决方案。它也适用于laravel 5.5。真的很喜欢 (y)
Web Artisan

1
很棒的代码!干净,简单,完美的工作!;)在我看来,这是最好的答复。如果它可以帮助某人:我只是ini_set('memory_limit', '512M');在脚本执行之前和ini_restore('memory_limit');结尾添加了内容。如果文件夹太重(这是一个大于500MB的文件夹),则必须避免内存不足。
Jacopo Pace

1
在我的环境(PHP 7.3,Debian)中,创建了一个没有目录列表的ZIP存档(大的空文件)。我必须更改以下行:$ name。='/'; 变成$ name =($ name =='。'?'':$ name。'/');
Gerfried

这对我有用。感谢分享。干杯!
Sathiska

8

这个功能可以将整个文件夹及其内容压缩为一个zip文件,您可以像这样简单地使用它:

addzip ("path/folder/" , "/path2/folder.zip" );

功能:

// compress all files in the source directory to destination directory 
    function create_zip($files = array(), $dest = '', $overwrite = false) {
    if (file_exists($dest) && !$overwrite) {
        return false;
    }
    if (($files)) {
        $zip = new ZipArchive();
        if ($zip->open($dest, $overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
            return false;
        }
        foreach ($files as $file) {
            $zip->addFile($file, $file);
        }
        $zip->close();
        return file_exists($dest);
    } else {
        return false;
    }
}

function addzip($source, $destination) {
    $files_to_zip = glob($source . '/*');
    create_zip($files_to_zip, $destination);
    echo "done";
}

如何使用此脚本将子文件夹也自动包含在备份中?@Alireza
floCoder 2015年

2

为什么不尝试EFS PhP-ZiP MultiVolume脚本 ...我压缩并传输了数百个演出和数百万个文件...需要ssh才能有效地创建档案。

但是我相信生成的文件可以直接从php与exec一起使用:

exec('zip -r backup-2013-03-30_0 . -i@backup-2013-03-30_0.txt');

我不知道是否可行。我没有尝试过...

“秘密”在于,归档的执行时间不应超过PHP代码执行所允许的时间。


1

这是在PHP中制作ZIP的有效示例:

$zip = new ZipArchive();
$zip_name = time().".zip"; // Zip name
$zip->open($zip_name,  ZipArchive::CREATE);
foreach ($files as $file) {
  echo $path = "uploadpdf/".$file;
  if(file_exists($path)){
  $zip->addFromString(basename($path),  file_get_contents($path));---This is main function  
  }
  else{
   echo"file does not exist";
  }
}
$zip->close();

1

我在google中发现此帖子是第二好的结果,首先是使用exec :(

无论如何,尽管这不能完全满足我的需求。.我决定用我快速但扩展的版本为其他人发布答案。

脚本功能

  • 每天备份文件的命名,PREFIX-YYYY-MM-DD-POSTFIX.EXTENSION
  • 文件报告/丢失
  • 以前的备份清单
  • 不压缩/不包含以前的备份;)
  • 在Windows / Linux上工作

无论如何,请放到脚本上。。虽然看起来很多。.请记住这里有多余的内容。.因此,请根据需要随时删除报告部分...

而且它看起来也很凌乱,某些东西很容易清理...所以请不要对此发表评论,它只是一个带有基本注释的快速脚本。 !

在此示例中,它是从根www / public_html文件夹内的目录运行的。因此,只需向上移动一个文件夹即可到达根目录。

<?php
    // DIRECTORY WE WANT TO BACKUP
    $pathBase = '../';  // Relate Path

    // ZIP FILE NAMING ... This currently is equal to = sitename_www_YYYY_MM_DD_backup.zip 
    $zipPREFIX = "sitename_www";
    $zipDATING = '_' . date('Y_m_d') . '_';
    $zipPOSTFIX = "backup";
    $zipEXTENSION = ".zip";

    // SHOW PHP ERRORS... REMOVE/CHANGE FOR LIVE USE
    ini_set('display_errors',1);
    ini_set('display_startup_errors',1);
    error_reporting(-1);




// ############################################################################################################################
//                                  NO CHANGES NEEDED FROM THIS POINT
// ############################################################################################################################

    // SOME BASE VARIABLES WE MIGHT NEED
    $iBaseLen = strlen($pathBase);
    $iPreLen = strlen($zipPREFIX);
    $iPostLen = strlen($zipPOSTFIX);
    $sFileZip = $pathBase . $zipPREFIX . $zipDATING . $zipPOSTFIX . $zipEXTENSION;
    $oFiles = array();
    $oFiles_Error = array();
    $oFiles_Previous = array();

    // SIMPLE HEADER ;)
    echo '<center><h2>PHP Example: ZipArchive - Mayhem</h2></center>';

    // CHECK IF BACKUP ALREADY DONE
    if (file_exists($sFileZip)) {
        // IF BACKUP EXISTS... SHOW MESSAGE AND THATS IT
        echo "<h3 style='margin-bottom:0px;'>Backup Already Exists</h3><div style='width:800px; border:1px solid #000;'>";
            echo '<b>File Name: </b>',$sFileZip,'<br />';
            echo '<b>File Size: </b>',$sFileZip,'<br />';
        echo "</div>";
        exit; // No point loading our function below ;)
    } else {

        // NO BACKUP FOR TODAY.. SO START IT AND SHOW SCRIPT SETTINGS
        echo "<h3 style='margin-bottom:0px;'>Script Settings</h3><div style='width:800px; border:1px solid #000;'>";
            echo '<b>Backup Directory: </b>',$pathBase,'<br /> ';
            echo '<b>Backup Save File: </b>',$sFileZip,'<br />';
        echo "</div>";

        // CREATE ZIPPER AND LOOP DIRECTORY FOR SUB STUFF
        $oZip = new ZipArchive;
        $oZip->open($sFileZip,  ZipArchive::CREATE | ZipArchive::OVERWRITE);
        $oFilesWrk = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($pathBase),RecursiveIteratorIterator::LEAVES_ONLY);
        foreach ($oFilesWrk as $oKey => $eFileWrk) {
            // VARIOUS NAMING FORMATS OF THE CURRENT FILE / DIRECTORY.. RELATE & ABSOLUTE
            $sFilePath = substr($eFileWrk->getPathname(),$iBaseLen, strlen($eFileWrk->getPathname())- $iBaseLen);
            $sFileReal = $eFileWrk->getRealPath();
            $sFile = $eFileWrk->getBasename();

            // WINDOWS CORRECT SLASHES
            $sMyFP = str_replace('\\', '/', $sFileReal);

            if (file_exists($sMyFP)) {  // CHECK IF THE FILE WE ARE LOOPING EXISTS
                if ($sFile!="."  && $sFile!="..") { // MAKE SURE NOT DIRECTORY / . || ..
                    // CHECK IF FILE HAS BACKUP NAME PREFIX/POSTFIX... If So, Dont Add It,, List It
                    if (substr($sFile,0, $iPreLen)!=$zipPREFIX && substr($sFile,-1, $iPostLen + 4)!= $zipPOSTFIX.$zipEXTENSION) {
                        $oFiles[] = $sMyFP;                     // LIST FILE AS DONE
                        $oZip->addFile($sMyFP, $sFilePath);     // APPEND TO THE ZIP FILE
                    } else {
                        $oFiles_Previous[] = $sMyFP;            // LIST PREVIOUS BACKUP
                    }
                }
            } else {
                $oFiles_Error[] = $sMyFP;                       // LIST FILE THAT DOES NOT EXIST
            }
        }
        $sZipStatus = $oZip->getStatusString();                 // GET ZIP STATUS
        $oZip->close(); // WARNING: Close Required to append files, dont delete any files before this.

        // SHOW BACKUP STATUS / FILE INFO
        echo "<h3 style='margin-bottom:0px;'>Backup Stats</h3><div style='width:800px; height:120px; border:1px solid #000;'>";
            echo "<b>Zipper Status: </b>" . $sZipStatus . "<br />";
            echo "<b>Finished Zip Script: </b>",$sFileZip,"<br />";
            echo "<b>Zip Size: </b>",human_filesize($sFileZip),"<br />";
        echo "</div>";


        // SHOW ANY PREVIOUS BACKUP FILES
        echo "<h3 style='margin-bottom:0px;'>Previous Backups Count(" . count($oFiles_Previous) . ")</h3><div style='overflow:auto; width:800px; height:120px; border:1px solid #000;'>";
        foreach ($oFiles_Previous as $eFile) {
            echo basename($eFile) . ", Size: " . human_filesize($eFile) . "<br />";
        }
        echo "</div>";

        // SHOW ANY FILES THAT DID NOT EXIST??
        if (count($oFiles_Error)>0) {
            echo "<h3 style='margin-bottom:0px;'>Error Files, Count(" . count($oFiles_Error) . ")</h3><div style='overflow:auto; width:800px; height:120px; border:1px solid #000;'>";
            foreach ($oFiles_Error as $eFile) {
                echo $eFile . "<br />";
            }
            echo "</div>";
        }

        // SHOW ANY FILES THAT HAVE BEEN ADDED TO THE ZIP
        echo "<h3 style='margin-bottom:0px;'>Added Files, Count(" . count($oFiles) . ")</h3><div style='overflow:auto; width:800px; height:120px; border:1px solid #000;'>";
        foreach ($oFiles as $eFile) {
            echo $eFile . "<br />";
        }
        echo "</div>";

    }


    // CONVERT FILENAME INTO A FILESIZE AS Bytes/Kilobytes/Megabytes,Giga,Tera,Peta
    function human_filesize($sFile, $decimals = 2) {
        $bytes = filesize($sFile);
        $sz = 'BKMGTP';
        $factor = floor((strlen($bytes) - 1) / 3);
        return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
    }
?>

它有什么作用??

它将简单地压缩变量$ pathBase的全部内容并将其存储在同一文件夹中。它对以前的备份进行简单的检测,并跳过它们。

CRON备份

我刚刚在Linux上测试了该脚本,并且使用pathBase的绝对URL在cron作业中运行良好。


我还排除了删除脚本,您可以看到为此的接受答案
愤怒的84年

一定喜欢那些随机的不赞成票而没有评论为什么。
2016年

1

使用此功能:

function zip($source, $destination)
{
    if (!extension_loaded('zip') || !file_exists($source)) {
        return false;
    }

    $zip = new ZipArchive();
    if (!$zip->open($destination, ZIPARCHIVE::CREATE)) {
        return false;
    }

    $source = str_replace('\\', '/', realpath($source));

    if (is_dir($source) === true) {
        $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);

        foreach ($files as $file) {
            $file = str_replace('\\', '/', $file);

            // Ignore "." and ".." folders
            if (in_array(substr($file, strrpos($file, '/')+1), array('.', '..'))) {
                continue;
            }               

            $file = realpath($file);

            if (is_dir($file) === true) {
                $zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
            } elseif (is_file($file) === true) {
                $zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
            }
        }
    } elseif (is_file($source) === true) {
        $zip->addFromString(basename($source), file_get_contents($source));
    }

    return $zip->close();
}

使用示例:

zip('/folder/to/compress/', './compressed.zip');

1

使用它工作正常。

$dir = '/Folder/';
$zip = new ZipArchive();
$res = $zip->open(trim($dir, "/") . '.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE);
if ($res === TRUE) {
    foreach (glob($dir . '*') as $file) {
        $zip->addFile($file, basename($file));
    }
    $zip->close();
} else {
    echo 'Failed to create to zip. Error: ' . $res;
}

1

在PHP中创建一个zip文件夹。

邮编创建方法

   public function zip_creation($source, $destination){
    $dir = opendir($source);
    $result = ($dir === false ? false : true);

    if ($result !== false) {

        
        $rootPath = realpath($source);
         
        // Initialize archive object
        $zip = new ZipArchive();
        $zipfilename = $destination.".zip";
        $zip->open($zipfilename, ZipArchive::CREATE | ZipArchive::OVERWRITE );
         
        // Create recursive directory iterator
        /** @var SplFileInfo[] $files */
        $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($rootPath), RecursiveIteratorIterator::LEAVES_ONLY);
         
        foreach ($files as $name => $file)
        {
            // Skip directories (they would be added automatically)
            if (!$file->isDir())
            {
                // Get real and relative path for current file
                $filePath = $file->getRealPath();
                $relativePath = substr($filePath, strlen($rootPath) + 1);
         
                // Add current file to archive
                $zip->addFile($filePath, $relativePath);
            }
        }
         
        // Zip archive will be created only after closing object
        $zip->close();
        
        return TRUE;
    } else {
        return FALSE;
    }


}

调用zip方法

$source = $source_directory;
$destination = $destination_directory;
$zipcreation = $this->zip_creation($source, $destination);

0

我对该脚本做了一些小的改进。

  <?php
    $directory = "./";
    //create zip object
    $zip = new ZipArchive();
    $zip_name = time().".zip";
    $zip->open($zip_name,  ZipArchive::CREATE);
    $files = new RecursiveIteratorIterator(
        new RecursiveDirectoryIterator($directory),
        RecursiveIteratorIterator::LEAVES_ONLY
    );
    foreach ($files as $file) {
        $path = $file->getRealPath();
        //check file permission
        if(fileperms($path)!="16895"){
            $zip->addFromString(basename($path),  file_get_contents($path)) ;
            echo "<span style='color:green;'>{$path} is added to zip file.<br /></span> " ;
        }
        else{
            echo"<span style='color:red;'>{$path} location could not be added to zip<br /></span>";
        }
    }
    $zip->close();
    ?>

这确实压缩了文件,但目录列表消失了,它不再具有目录了
Sujay sreedhar 2015年

0

这样可以解决您的问题。请尝试一下。

$zip = new ZipArchive;
$zip->open('testPDFZip.zip', ZipArchive::CREATE);
foreach (glob(APPLICATION_PATH."pages/recruitment/uploads/test_pdf_folder/*") as $file) {
    $new_filename = end(explode("/",$file));
    $zip->addFile($file,"emp/".$new_filename);
}           
$zip->close();

0

对于阅读这篇文章并寻找为什么使用addFile而不是addFromString压缩文件的人,这并没有使用绝对路径来压缩文件(只压缩了文件而没有其他内容),请在此处查看我的问题和解答

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.