使用ZIP处理文件和文件夹

时间:2012-07-08 10:03:38

标签: php html zip

我们有一些像以下的HTML代码:

<body>Some text</body>

变量$contents

我第一次在php中使用zip时,有几个问题。

我如何:

  1. 创建一个名为HTML的文件夹并将其放在$contents内(在ftp上没有真正的创建,只是在变量中)

  2. 创建index.html并将其放在HTML内的$contents文件夹中

    所以zip之前的$contents应该包含:

    /HTML/index.html (with <body>Some text</body> code inside)
    
  3. 创建一个包含$contents变量内所有内容的zip存档。

2 个答案:

答案 0 :(得分:1)

如果我理解正确的话:

$contents = '/tmp/HTML';
// Make the directory
mkdir($contents);
// Write the html
file_put_contents("$contents/index.html", $html);
// Zip it up
$return_value = -1;
$output = array();
exec("zip -r contents.zip $contents 2>&1", $output, $return_value);
if ($return_value === 0){
    // No errors
    // You now have contents.zip to play with
} else {
   echo "Errors!";
   print_r($output);
}

我没有使用库来压缩它,只是命令行,但如果你愿意,你可以使用库(但是我正在检查zip是否正确执行了。)


如果你真的想在内存中真正做所有事情,你可以这样做:

$zip = new ZipArchive;
if ($zip->open('contents.zip') === TRUE) {
    $zip->addFromString('contents/index.html', $html);
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}

http://www.php.net/manual/en/ziparchive.addfromstring.php

答案 1 :(得分:0)

我建议使用ZipArchive类。所以你可以有这样的东西

$html = '<body>some HTML</body>';
$contents = new ZipArchive();
if($contents->open('html.zip', ZipArchive::CREATE)){
    $contents->addEmptyDir('HTML');
    $contents->addFromString('index.html', $html);
    $contents->close()
}