web-dev-qa-db-ja.com

PHPを使用してフォルダー全体を圧縮する方法

私はここでstackoveflowで特定のファイルを圧縮する方法に関するいくつかのコードを見つけましたが、特定のフォルダはどうですか?

Folder/
  index.html
  picture.jpg
  important.txt

My Folderの中には、ファイルがあります。 My Folderを圧縮した後、important.txtを除くフォルダーのコンテンツ全体を削除したい。

これは stack にあります

あなたの助けが必要です。ありがとう。

109
woninana

コードが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);
}
274
Dador

ZipArchiveクラスには、ドキュメント化されていない便利なメソッドがあります:addGlob();

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

if (!$zipArchive->open($zipFile, ZIPARCHIVE::OVERWRITE))
    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

48
Mark Baker

これを試して:

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

これはしません Zip再帰的に。

19
netcoder

これは、Zipアプリケーションが検索パスにあるサーバーで実行されていると想定しています。すべてのUNIXベースのサーバーに当てはまるはずで、ほとんどのWindowsベースのサーバーだと思います。

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

アーカイブは、後でarchive.Zipに常駐します。ファイルまたはフォルダー名の空白はエラーの一般的な原因であり、可能な場合は避ける必要があることに注意してください。

16
Kevin Read

以下のコードを試してみましたが、動作しています。コードは自明であり、質問がある場合はお知らせください。

<?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';
}
?>
11

これは、フォルダー全体とその内容を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";
}
7
Alireza Fallah

これは、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
Sun Love

この機能を使用します。

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
Waqar Alamgir

これを使用すると正常に動作します。

$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
Indrajeet Singh

試してみませんかEFS PhP-Zip MultiVolume Script ...数百のギグと数百万のファイルを圧縮して転送しました...アーカイブを効果的に作成するにはsshが必要です。

しかし、結果ファイルはphpから直接execで使用できると信じています:

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

動作するかどうかはわかりません。私は試していません...

「秘密」は、アーカイブの実行時間がPHPコードの実行に許可される時間を超えてはならないことです。

1
ByREV

この投稿を読んで、addFromStringの代わりにaddFileを使用してファイルをzipする理由を探している人は、絶対パスでファイルをzipしない(ファイルをzipするだけで、他には何もありません)、私の質問と回答を参照してください ここ

0
Skytiger

スクリプトを少し改善しました。

  <?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();
    ?>
0
Poohspear

これで問題が解決します。やってみてください。

$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
Lakhan

私はこの投稿を2番目のトップ結果としてgoogleで見つけました、最初はexecを使用していました:(

とにかく、これは私のニーズに正確には合いませんでしたが..私はこれの私の速いが拡張されたバージョンで他の人に答えを投稿することにしました。

スクリプト機能

  • 毎日のバックアップファイルの命名、PREFIX-YYYY-MM-DD-POSTFIX.EXTENSION
  • ファイルの報告/欠落
  • 以前のバックアップリスト
  • 以前のバックアップを圧縮/含めません;)
  • Windows/Linuxで動作します

とにかく、スクリプトに..それはたくさんのように見えるかもしれませんが..ここに過剰があることを覚えておいてください..必要に応じてレポートセクションを削除してください...

また、乱雑に見えることもあり、特定のものを簡単にクリーンアップすることもできます...それについてコメントしないでください。基本的なコメントがスローされただけの簡単なスクリプトです。 !

この例では、ルートwww/public_htmlフォルダー内のディレクトリから実行されます。したがって、ルートに到達するために1つのフォルダーを上に移動するだけで済みます。

<?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の完全なコンテンツをZip圧縮し、同じフォルダーにZipを格納します。以前のバックアップを簡単に検出し、それらをスキップします。

CRON BACKUP

このスクリプトは、Linuxでテストしたばかりで、pathBaseに絶対URLを使用してcronジョブで問題なく動作しました。

0
Angry 84