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

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


ฟังก์ชัน zip_entry_open() ใช้สำหรับเปิดรายการไฟล์ zip เพื่ออ่าน

ไวยากรณ์

zip_entry_open(zip_file,zip_entry,mode)

พารามิเตอร์

  • zip_file − ไฟล์ zip ที่จะอ่าน

  • zip_entry − รายการซิปที่จะเปิด

  • โหมด − ประเภทของการเข้าถึงที่จำเป็นสำหรับไฟล์ zip

คืนสินค้า

ฟังก์ชัน zip_entry_open() ส่งคืนค่า TRUE เมื่อสำเร็จ หรือ FALSE เมื่อล้มเหลว

ตัวอย่าง

<?php
   $zip_file = zip_open("new.zip");
   $zip_entry = zip_read($zip_file);
   zip_entry_open($zip_file, $zip_entry, "rb");
   $myfile = zip_entry_name($zip_entry);
   if($myfile == true)
   echo("Zip file: " . $file . " is opened now!<br>");
   $flag = zip_entry_close($zip_entry);
   if ($flag == true)
   echo("$file . " closed!");
   zip_close($zip_file);
?>

ผลลัพธ์

new/one is opened now!
new/one closed!