创建一个 ZIP 文件,其中包含动态生成的文件

Create a ZIP file containing file generated on the fly

我正在开发一个网络应用程序,它会提出一系列问题,然后根据这些问题生成一个文本文档。文档已创建并在客户端自动触发下载 browser.That 完美运行。

但是,我现在想做的是在动态创建该文件时从该文件创建一个 ZIP 文件,并添加一些其他文件。虽然我不知道 PHP?

是否可行

有人可以指教吗?我环顾四周,但所有 examples/tutorials 都演示了从文件系统中已存在的文件创建 ZIP 文件?

谢谢。

因此,对于那些感兴趣的人,我使用了上面提到的 SO post 中的以下代码:

// 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); 

根据我的要求进行了相应调整,效果很好。