目录

PHP zip_entry_open() 函数

❮ PHP 邮政编码参考

示例

打开 ZIP 文件存档,打开目录条目进行读取,并从打开的目录条目中读取:

<?php
$zip = zip_open("test.zip");

if ($zip) {
  while ($zip_entry = zip_read($zip)) {
    echo "<p>Name: " . zip_entry_name($zip_entry) . "<br>";
    // Open directory entry for reading
    if (zip_entry_open($zip, $zip_entry)) {
      echo "File Contents:<br>";
      // Read open directory entry
      $contents = zip_entry_read($zip_entry);
      echo "$contents<br>";
      zip_entry_close($zip_entry);
    }
  echo "</p>";
  }
zip_close($zip);
}
?>

代码的输出取决于 ZIP 存档的内容:

Name: ziptest.txt
File Contents:
Hello World! This is a test.

Name: htmlziptest.html
File Contents:

Hello World!

This is a test for the zip functions in PHP.


定义和用法

zip_entry_open() 函数打开 ZIP 文件中的目录条目以供读取。

语法

zip_entry_open( zip, zip_entry, mode)

参数值

Parameter Description
zip Required. Specifies the ZIP resource opened with zip_open()
zip_entry Required. Specifies the ZIP directory entry to open (opened with zip_read())
mode Optional. Specifies the type of access you require to the ZIP archive. Note: Currently, mode is always "rb", because ZIP support in PHP is read only

技术细节

返回值: 成功则为真。失败时为 FALSE
PHP 版本: 4.1.0+

❮ PHP 邮政编码参考