PHP zip_entry_compressedsize() Function

Description

The zip_entry_compressedsize() function returns the compressed file size of a zip archive entry.

Syntax

PHP zip_entry_compressedsize() Function has the following syntax.

zip_entry_compressedsize(zip_entry)

Parameter

ParameterIs requiredDescription
zip_entryRequired.Zip entry resource to read (a zip entry opened with zip_read() )

Return

The compressed size.

Example

Returns the compressed file size of a zip archive entry


<?php//w ww. ja  va 2s.  c o m
$zip = zip_open("test.zip");

if ($zip){
  while ($zip_entry = zip_read($zip)){
    echo "Name: " . zip_entry_name($zip_entry);
    echo "Compressed Size: " . zip_entry_compressedsize($zip_entry);
  }
  zip_close($zip);
}
?>




















Home »
  PHP Tutorial »
    Function reference »




PHP Array Functions
PHP Calendar Functions
PHP Class Functions
PHP Data Type Functions
PHP Date Functions
PHP File Functions
PHP Image Functions
PHP Math Functions
PHP MySQLi Functions
PHP SimpleXML Functions
PHP String Functions
PHP XML Functions
PHP Zip Functions