在 PHP 中提取下载的 zip 文件的内容而不将其存储到光盘中

发布于 2024-11-25 20:03:30 字数 114 浏览 0 评论 0原文

我正在通过 PHP 中的 SOAP 调用检索 zip 存档。有没有办法提取内容而不先将其写入文件? 到目前为止,我发现的所有内容似乎都依赖于将数据存储在本地文件中,提取内容并再次删除文件,这对我来说似乎是多余的。

I'm retrieving a zip-Archive via a SOAP call in PHP. Is there a way to extract the content without writing it to a file first?
So far all I found seemed to rely on storing the data in a local file, extract the content and delete the file again which seems superfluous to me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱皱眉﹌ 2024-12-02 20:03:30

有一些 PHP 类使用 gzuncompress 函数进行 zip 解压缩。我认为他们可以将 zip 文件放入字符串中,如果没有,您可以根据您的目的调整代码。

这是一个此类的示例(代码来自此处 根据 LGPL,需要注册)。

There are PHP classes that use gzuncompress functions for zip decompression. I think they can take zip file inside a string and if not you can adapt the code to your purposes.

This is an example of one such class (code from here under LGPL, requires registration).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文