最新的Web開發教程
 

PHP zip_entry_read() Function


<完整PHP Zip文件參考

定義和用法

zip_entry_read()函數從打開的zip檔案條目獲取的內容。

該函數返回成功的條目或失敗FALSE的內容。

句法

zip_entry_read(zip_entry,length)

參數 描述
zip_entry 需要。 指定ZIP條目資源閱讀(帶開了一個ZIP條目zip_read()
length 可選的。 指定的字節數(uncompressed size)返回。 默認值是1024

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

if ($zip)
  {
  while ($zip_entry = zip_read($zip))
    {
    echo "<p>";
    echo "Name: " . zip_entry_name($zip_entry) . "<br />";

    if (zip_entry_open($zip, $zip_entry))
      {
      echo "File Contents:<br/>";
      $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 for a the zip functions in PHP.

Name: htmlziptest.html
File Contents:

Hello World!

This is a test for a the zip functions in PHP.

<完整PHP Zip文件參考