创建ZIP备份文件 - 未抛出任何错误,但ZIP文件未显示

时间:2013-07-18 10:58:17

标签: php zip ziparchive

$path = '/home/username/www/;

if($zip = new ZipArchive){
    if($zip->open('backup_'. time() .'.zip', ZipArchive::CREATE)){
        if(false !== ($dir = opendir($path))){
            while (false !== ($file = readdir($dir))){
                if ($file != '.' && $file != '..' && $file != 'aaa'){
                    $zip->addFile($path . $file);
                    echo 'Adding '. $file .' to path '. $path . $file .' <br>';
                }
            }
        }
        else
        {
            echo 'Can not read dir';
        }

        $zip->close();
    }
    else
    {
        echo 'Could not create backup file';
    }
}
else
{
    echo 'Could not launch the ZIP libary. Did you install it?';
}

再次问好Stackoverflow!我想备份一个文件夹及其所有内容,包括(空)子文件夹和其中的每个文件,同时排除单个文件夹(以及当前...)。需要排除的文件夹是aaa

因此,当我运行此脚本(每个文件夹都有chmod 0777)时,它运行没有错误,但ZIP文件没有显示。为什么?我该如何解决这个问题?

提前致谢!

3 个答案:

答案 0 :(得分:1)

您是否尝试通过PHP访问zip文件夹,而不是在FTP中查看是否存在 - 因为它可能不会立即显示在FTP中

答案 1 :(得分:0)

function addFolderToZip($dir, $zipArchive, $zipdir = ''){ 
        if (is_dir($dir)) { 
            if ($dh = opendir($dir)) { 

                //Add the directory 
                if(!empty($zipdir)) $zipArchive->addEmptyDir($zipdir); 

                // Loop through all the files 
                while (($file = readdir($dh)) !== false) { 

                    //If it's a folder, run the function again! 
                    if(!is_file($dir . $file)){ 
                        // Skip parent and root directories, and any other directories you want
                        if( ($file !== ".") && ($file !== "..") && ($file !== "aa")){ 
                            addFolderToZip($dir . $file . "/", $zipArchive, $zipdir . $file . "/"); 
                        } 

                    }else{ 
                        // Add the files 
                        $zipArchive->addFile($dir . $file, $zipdir . $file); 

                    } 
                } 
            } 
        } 
    }

经过一段时间的鬼混,这就是我发现的工作。使用它如下所示。

$zipArchive = new ZipArchive;   

$name = 'backups\backup_'. time() .'.zip';

$zipArchive->open($name, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE);

addFolderToZip($path, $zipArchive);

答案 2 :(得分:0)

这是我的答案,检查修改时间是否大于某些内容。

    <?php

$zip = new ZipArchive;

$zip_name = md5("backup".time()).".zip";

$res = $zip->open($zip_name, ZipArchive::CREATE);

$realpath = str_replace('filelist.php','',__FILE__);

$path = realpath('.');
$objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path), RecursiveIteratorIterator::SELF_FIRST);
foreach($objects as $name => $object){
        if (is_file($object)) {
            $file_count ++;
            $epoch = $object->getMTime();
            if($epoch>='1374809360'){ // Whatever date you want to start at
                $array[] = str_replace($realpath,'',$object->getPathname());    
            }

        }
}


    foreach($array as $files) {
        $zip->addFile($files);
    }       

    $zip->close();

    echo $zip_name.'-'.$file_count.'-'.$count_files; 
?>