zip_entry_name() 関数は、zip アーカイブ ファイルの名前を返します。
zip_entry_name(zip_entry)
zip_entry -ここでは、zip_open() を使用して開かれた zip ファイルについて説明します。
zip_entry_name() 関数は、zip アーカイブ ファイルの名前を返します。
以下は例です。 zip アーカイブ「new.zip」に 5 つのファイルがあるとします。
<?php $zip = zip_open("new.zip"); if ($zip) { while ($zip_entry = zip_read($zip)) { echo "File Name = ". zip_entry_filename($zip_entry). "<br />"; } zip_close($zip); } ?>
File Name = amit.txt File Name = peter.txt File Name = result.html File Name = demo.java File Name = settings.ini
以上がPHP の zip_entry_name() 関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。