<สมบูรณ์ PHP อ้างอิงไฟล์ซิป
ความหมายและการใช้งาน
zip_entry_read() ฟังก์ชั่นได้รับเนื้อหาจากรายการไฟล์ zip เปิด
ฟังก์ชั่นนี้จะส่งกลับเนื้อหาของรายการกับความสำเร็จหรือความล้มเหลวผิดพลาดใน
วากยสัมพันธ์
zip_entry_read(zip_entry,length)
พารามิเตอร์ | ลักษณะ |
---|---|
zip_entry | จำเป็นต้องใช้ ระบุทรัพยากรรายการซิปในการอ่าน (รายการซิปเปิด zip_read() ) |
length | ไม่จำเป็น. ระบุจำนวนไบต์ (uncompressed size) จะกลับมา เริ่มต้นคือ 1024 |
ตัวอย่าง
<?php
$zip = zip_open("test.zip");
if ($zip)
{
while ($zip_entry = zip_read($zip))
{
echo "<p>";
echo "Name: " . zip_entry_name($zip_entry) . "<br />";
if (zip_entry_open($zip, $zip_entry))
{
echo "File Contents:<br/>";
$contents = zip_entry_read($zip_entry);
echo "$contents<br />";
zip_entry_close($zip_entry);
}
echo "</p>";
}
zip_close($zip);
}
?>
การส่งออกของรหัสขึ้นอยู่กับเนื้อหาของไฟล์ zip ไปนี้:
Name: ziptest.txt
File Contents:
Hello World! This is a test for a the zip functions in PHP.
Name: htmlziptest.html
File Contents:
Hello World!
This is a test for a the zip functions in PHP.
<สมบูรณ์ PHP อ้างอิงไฟล์ซิป