ฟังก์ชัน zip_entry_compressedsize() ส่งคืนขนาดไฟล์ที่บีบอัดของรายการไฟล์ zip
zip_entry_compressedsize (zip_entry)
พารามิเตอร์ | อธิบาย |
---|---|
zip_entry | ที่จำเป็น. ระบุทรัพยากรโครงการ zip ที่จะอ่าน (โครงการ zip ที่เปิดโดย zip_read()) |
<?php$zip = zip_open("test.zip");if ($zip) { while ($zip_entry = zip_read($zip)) { echo "<p>"; echo "ชื่อ: " ) . "<br />"; echo "ขนาดที่ถูกบีบอัด: " . zip_entry_compressedsize($zip_entry); } zip_close($zip); }?>
รหัสข้างต้นจะส่งออก:
ชื่อ: ziptest.txtขนาดที่บีบอัด: 56ชื่อ: htmlziptest.htmlขนาดที่บีบอัด: 101