Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ฟังก์ชัน zip_entry_name() ใน PHP


ฟังก์ชัน zip_entry_name() จะคืนค่าชื่อของไฟล์ zip archive

ไวยากรณ์

zip_entry_name(zip_entry)

พารามิเตอร์

  • zip_entry − ไฟล์ zip ที่เปิดด้วย zip_open() จะมีการกล่าวถึงที่นี่

คืนสินค้า

ฟังก์ชัน zip_entry_name() จะคืนค่าชื่อของไฟล์ zip archive

ต่อไปนี้คือตัวอย่าง สมมติว่าเรามี 5 ไฟล์ในไฟล์ zip "new.zip"

ตัวอย่าง

<?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