ZipArchives店绝对路径(ZipArchives stores absolute paths

2019-09-24 03:32发布

我可以压缩使用相对路径的文件?

例如:

$zip->addFile('c:/wamp/www/foo/file.txt');

该ZIP应该有这样的目录结构:

foo
 -> file.txt

并不是:

wamp
 -> www
     -> foo
         -> file.txt

喜欢它是默认......

PS:我完整的代码在这里 (我使用ZipArchive到一个目录的内容压缩成zip文件)

Answer 1:

addFile()函数的定义,可以覆盖存档文件名:

$zip->addFile('/path/to/index.txt', 'newname.txt');


Answer 2:

如果你想递归添加文件夹的所有子文件夹和文件,你可以试试下面的代码(我修改PHP手册此代码/注 )。

class Zipper extends ZipArchive {
    public function addDir($path, $parent_dir = '') {
        if($parent_dir != ''){
            $this->addEmptyDir($parent_dir);
            $parent_dir .= '/';
            print '<br>adding dir ' . $parent_dir . '<br>';
        }
        $nodes = glob($path . '/*');
        foreach ($nodes as $node) {
            if (is_dir($node)) {
                $this->addDir($node, $parent_dir.basename($node));
            }
            else if (is_file($node))  {
                $this->addFile($node, $parent_dir.basename($node));
                print 'adding file '.$parent_dir.basename($node) . '<br>';
            }
        }
    }
} // class Zipper

所以基本上这样做是不包括要压缩,而是只从实际文件夹(相对路径)你想压缩开始实际的目录/文件夹之前的目录(绝对路径)。



Answer 3:

这是保罗的剧本,以还包括点文件像的.htaccess修改后的版本,它也应该是快了一点,因为我取代水珠被执行opendir这里劝 。

<?php

$password = 'set_a_password'; // password to avoid listing your files to anybody

if (strcmp(md5($_GET['password']), md5($password))) die();

// Make sure the script can handle large folders/files
ini_set('max_execution_time', 600);
ini_set('memory_limit','1024M');

//path to directory to scan
if (!empty($_GET['path'])) {
    $fullpath = realpath($_GET['path']); // append path if set in GET
} else { // else by default, current directory
    $fullpath = realpath(dirname(__FILE__)); // current directory where the script resides
}

$directory = basename($fullpath); // parent directry name (not fullpath)
$zipfilepath = $fullpath.'/'.$directory.'_'.date('Y-m-d_His').'.zip';

$zip = new Zipper();

if ($zip->open($zipfilepath, ZipArchive::CREATE)!==TRUE) {
    exit("cannot open/create zip <$zipfilepath>\n");
}

$past = time();

$zip->addDir($fullpath);

$zip->close();

print("<br /><hr />All done! Zipfile saved into ".$zipfilepath);
print('<br />Done in '.(time() - $past).' seconds.');

class Zipper extends ZipArchive { 

    // Thank's to Paolo for this great snippet: http://stackoverflow.com/a/17440780/1121352
    // Modified by LRQ3000
    public function addDir($path, $parent_dir = '') {
        if($parent_dir != '' and $parent_dir != '.' and $parent_dir != './') {
            $this->addEmptyDir($parent_dir);
            $parent_dir .= '/';
            print '<br />--> ' . $parent_dir . '<br />';
        }

        $dir = opendir($path);
        if (empty($dir)) return; // skip if no files in folder
        while(($node = readdir($dir)) !== false) {
            if ( $node == '.' or $node == '..' ) continue; // avoid these special directories, but not .htaccess (except with GLOB which anyway do not show dot files)
            $nodepath = $parent_dir.basename($node); // with opendir
            if (is_dir($nodepath)) {
                $this->addDir($nodepath, $parent_dir.basename($node));
            } elseif (is_file($nodepath)) {
                $this->addFile($nodepath, $parent_dir.basename($node));
                print $parent_dir.basename($node).'<br />';
            }
        }
    }
} // class Zipper 

?>

这是一个独立的脚本,只是复制/粘贴到一个PHP文件(如:zipall.php),并在浏览器中打开它(如: zipall.php?password=set_a_password ,如果您没有设置正确的密码,该页面将保持空白出于安全考虑)。 您必须使用FTP帐户事后检索的zip文件,这也是一种安全措施。



文章来源: ZipArchives stores absolute paths