PHP Zip 操作
我有一个 zip 文件。 我需要一种简单的方法来从 zip 中读取文件名并读取其中一个文件的内容。
这可以直接在内存中完成而不保存、打开和读取文件吗?
I have a zip file.
I need a simple way to read the name of the files from the zip and read the contents of one of the files.
Can this be done directly in memory without saving,opening and reading the files ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要打开存档,然后可以按索引迭代文件:
要读取单个文件的内容,您可以使用 ZipArchive::getStream($name)。
另一种直接执行此操作的方法是使用 zip:// 流包装器:
You need to open the archive and then can iterate over the files by index:
To read the content of a single file you can use ZipArchive::getStream($name).
Another way to directly do it is using the zip:// stream wrapper: