PHP Zip 操作

发布于 2024-09-24 03:39:34 字数 90 浏览 4 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

烂人 2024-10-01 03:39:34

您需要打开存档,然后可以按索引迭代文件:

$zip = new ZipArchive();
if ($zip->open('archive.zip'))
{
     for($i = 0; $i < $zip->numFiles; $i++)
     {  
          echo 'Filename: ' . $zip->getNameIndex($i) . '<br />';
     }
}
else
{
     echo 'Error reading .zip!';
}

要读取单个文件的内容,您可以使用 ZipArchive::getStream($name)

$zip = new ZipArchive();
$zip->open("archive.zip");
$fstream = $zip->getStream("index.txt");
if(!$fp) exit("failed\n");

while (!feof($fp)) {
    $contents .= fread($fp, 2);
}

另一种直接执行此操作的方法是使用 zip:// 流包装器:

$file = fopen('zip://' . dirname(__FILE__) . '/test.zip#test', 'r');
...

You need to open the archive and then can iterate over the files by index:

$zip = new ZipArchive();
if ($zip->open('archive.zip'))
{
     for($i = 0; $i < $zip->numFiles; $i++)
     {  
          echo 'Filename: ' . $zip->getNameIndex($i) . '<br />';
     }
}
else
{
     echo 'Error reading .zip!';
}

To read the content of a single file you can use ZipArchive::getStream($name).

$zip = new ZipArchive();
$zip->open("archive.zip");
$fstream = $zip->getStream("index.txt");
if(!$fp) exit("failed\n");

while (!feof($fp)) {
    $contents .= fread($fp, 2);
}

Another way to directly do it is using the zip:// stream wrapper:

$file = fopen('zip://' . dirname(__FILE__) . '/test.zip#test', 'r');
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文