ホームページ  >  記事  >  バックエンド開発  >  PHP の zip_entry_read() 関数

PHP の zip_entry_read() 関数

PHPz
PHPz転載
2023-09-07 21:49:021110ブラウズ

PHP の zip_entry_read() 関数

zip_entry_read() 関数は、開いた zip アーカイブ ファイルからコンテンツを取得するために使用されます。

構文

zip_entry_read(zip_entry, len)

パラメータ

  • zip_entry - zip エントリ リソース。必須。

  • #len - バイト単位の長さ。デフォルト値は 1024 です。

Return

zip_entry_read() 関数は、開かれた zip アーカイブ ファイルの内容を返します。失敗した場合は FALSE を返します。

例 以下は例です。 zip ファイル「one.zip」には、次の内容を含むファイル「detail.txt」が 1 つだけ含まれているとします。

Asia is a continent!

例を見てみましょう -

Example

<?php
   $zip_file = zip_open("one.zip");
   if ($zip_file) {
      while ($zip_entry = zip_read($zip)) {
         if (zip_entry_open($zip_file, $zip_entry)) {
            echo "Text in the file = <br/>";
            echo "zip_entry_read($zip_entry)<br />";
            zip_entry_close($zip_entry);
         }
         echo "</p>";
      }
      zip_close($zip_file);
   }
?>

出力

Text in the file =
Asia is a continent!

以上がPHP の zip_entry_read() 関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。