How to zip a whole folder using PHP

前端 未结 15 2205
有刺的猬
有刺的猬 2020-11-22 08:48

I have found here at stackoveflow some codes on how to ZIP a specific file, but how about a specific folder?

Folder/
  index.html
  picture.jpg
  important.tx         


        
相关标签:
15条回答
  • 2020-11-22 09:01

    For anyone reading this post and looking for a why to zip the files using addFile instead of addFromString, that does not zip the files with their absolute path (just zips the files and nothing else), see my question and answer here

    0 讨论(0)
  • 2020-11-22 09:04

    Why not Try EFS PhP-ZiP MultiVolume Script ... I zipped and transferred hundreds of gigs and millions of files ... ssh is needed to effectively create archives.

    But i belive that resulting files can be used with exec directly from php:

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

    I do not know if it works. I have not tried ...

    "the secret" is that the execution time for archiving should not exceed the time allowed for execution of PHP code.

    0 讨论(0)
  • Code updated 2015/04/22.

    Zip a whole folder:

    // 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();
    

    Zip a whole folder + delete all files except "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);
    }
    
    0 讨论(0)
  • 2020-11-22 09:08

    There is a useful undocumented method in the ZipArchive class: 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();
    

    Now documented at: www.php.net/manual/en/ziparchive.addglob.php

    0 讨论(0)
  • 2020-11-22 09:09

    I assume this is running on a server where the zip application is in the search path. Should be true for all unix-based and I guess most windows-based servers.

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

    The archive will reside in archive.zip afterwards. Keep in mind that blanks in file or folder names are a common cause of errors and should be avoided where possible.

    0 讨论(0)
  • 2020-11-22 09:13

    I found this post in google as the second top result, first was using exec :(

    Anyway, while this did not suite my needs exactly.. I decided to post an answer for others with my quick but extended version of this.

    SCRIPT FEATURES

    • Backup file naming day by day, PREFIX-YYYY-MM-DD-POSTFIX.EXTENSION
    • File Reporting / Missing
    • Previous Backups Listing
    • Does not zip / include previous backups ;)
    • Works on windows/linux

    Anyway, onto the script.. While it may look like a lot.. Remember there is excess in here.. So feel free to delete the reporting sections as needed...

    Also it may look messy as well and certain things could be cleaned up easily... So dont comment about it, its just a quick script with basic comments thrown in.. NOT FOR LIVE USE.. But easy to clean up for live use!

    In this example, it is run from a directory that is inside of the root www / public_html folder.. So only needs to travel up one folder to get to the root.

    <?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];
        }
    ?>
    

    WHAT DOES IT DO??

    It will simply zip the complete contents of the variable $pathBase and store the zip in that same folder. It does a simple detection for previous backups and skips them.

    CRON BACKUP

    This script i've just tested on linux and worked fine from a cron job with using an absolute url for the pathBase.

    0 讨论(0)
提交回复
热议问题