PHP中的zip_entry_compressed_size()函数

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