我们有一些像以下的HTML代码:
<body>Some text</body>
变量$contents
。
我第一次在php中使用zip时,有几个问题。
我如何:
创建一个名为HTML
的文件夹并将其放在$contents
内(在ftp上没有真正的创建,只是在变量中)
创建index.html
并将其放在HTML
内的$contents
文件夹中
所以zip之前的$contents
应该包含:
/HTML/index.html (with <body>Some text</body> code inside)
创建一个包含$contents
变量内所有内容的zip存档。
答案 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';
}
答案 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()
}