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

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


ฟังก์ชัน zip_entry_compressed_size() ส่งคืนขนาดไฟล์บีบอัดของรายการไฟล์ zip

ไวยากรณ์

zip_entry_compressed_size(zip_entry)

พารามิเตอร์

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

คืนสินค้า

ฟังก์ชัน zip_entry_compressed_size() ส่งคืนขนาดไฟล์บีบอัดของรายการไฟล์ zip

ต่อไปนี้เป็นตัวอย่างที่ได้รับขนาดของไฟล์ในไฟล์เก็บถาวร "new.zip"

ตัวอย่าง

<?php
   $zip = zip_open("new.zip");
   if ($zip) {
      while ($zip_entry = zip_read($zip)) {
         echo "Compressed = ". zip_entry_compressedsize($zip_entry). "<br />";
      }
      zip_close($zip);
   }
?>

ผลลัพธ์

Compressed: 90
Compressed: 12
Compressed: 67