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

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


ฟังก์ชัน zip_entry_read() ใช้เพื่อรับเนื้อหาจากไฟล์ zip ที่เปิดอยู่

ไวยากรณ์

zip_entry_read(zip_entry, len)

พารามิเตอร์

  • zip_entry - ทรัพยากรรายการซิป จำเป็น

  • เลน − ความยาวเป็นไบต์ ค่าเริ่มต้นคือ 1024

คืนสินค้า

ฟังก์ชัน zip_entry_read() ส่งกลับเนื้อหาจากไฟล์ zip ที่เปิดอยู่ ส่งกลับ FALSE เมื่อล้มเหลว

ตัวอย่าง ต่อไปนี้เป็นตัวอย่าง สมมติว่าไฟล์ zip "one.zip" ของเรามีเพียงไฟล์เดียว นั่นคือ "detail.txt" ซึ่งมีเนื้อหาดังต่อไปนี้

Asia is a continent!

เรามาดูตัวอย่างกัน −

ตัวอย่าง

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