我正在开发一个Web应用程序,它会询问一系列问题,然后根据这些问题生成一个文本文档。创建文档并在客户端浏览器上自动触发下载。这非常有效。
但是,我现在要做的是在动态创建时从此文件创建一个ZIP文件,并添加一些其他文件。虽然我无法弄清楚这是否可以用PHP?
任何人都可以提供建议吗?我环顾四周,但所有示例/教程都演示了如何从文件系统中已存在的文件创建ZIP文件?
感谢。
答案 0 :(得分:1)
所以对于那些感兴趣的人,我使用了上面提到的SO帖子中的以下代码:
// Prepare File
$file = tempnam("tmp", "zip");
$zip = new ZipArchive();
$zip->open($file, ZipArchive::OVERWRITE);
// Stuff with content
$zip->addFromString('file_name_within_archive.ext', $your_string_data);
$zip->addFile('file_on_server.ext', 'second_file_name_within_archive.ext');
// Close and send to users
$zip->close();
header('Content-Type: application/zip');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename="file.zip"');
readfile($file);
unlink($file);
根据我的要求进行相应调整,并且有效。