zip_entry_name

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Retrieve the name of a directory entry string zip_entry_name ( resource $zip_entry ) Returns the name of the specified directory entry. Parameters: zip_entry A directory entry returned by zip_read(). Returns: The name of the directory entry.

zip_entry_filesize

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Retrieve the actual file size of a directory entry int zip_entry_filesize ( resource $zip_entry ) Returns the actual size of the specified directory entry. Parameters: zip_entry A directory entry returned by zip_read(). Returns: The size of the directory entry.

zip_entry_compressionmethod

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Retrieve the compression method of a directory entry string zip_entry_compressionmethod ( resource $zip_entry ) Returns the compression method of the directory entry specified by zip_entry. Parameters: zip_entry A directory entry returned by zip_read(). Returns: The compression m

zip_entry_compressedsize

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Retrieve the compressed size of a directory entry int zip_entry_compressedsize ( resource $zip_entry ) Returns the compressed size of the specified directory entry. Parameters: zip_entry A directory entry returned by zip_read(). Returns: The compressed size.

zip_entry_close

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Close a directory entry bool zip_entry_close ( resource $zip_entry ) Closes the specified directory entry. Parameters: zip_entry A directory entry previously opened zip_entry_open(). Returns: Returns TRUE on success or FALSE on failure.

zip_close

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Close a ZIP file archive void zip_close ( resource $zip ) Closes the given ZIP file archive. Parameters: zip A ZIP file previously opened with zip_open(). Returns: No value is returned. See also:

ZipArchive::unchangeName

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.5.0) Revert all changes done to an entry with the given name. bool ZipArchive::unchangeName ( string $name ) Revert all changes done to an entry. Parameters: name Name of the entry. Returns: Returns TRUE on success or FALSE on failure.

ZipArchive::unchangeIndex

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) Revert all changes done to an entry at the given index bool ZipArchive::unchangeIndex ( int $index ) Revert all changes done to an entry at the given index. Parameters: index Index of the entry. Returns: Returns TRUE on success or FALSE on failure.

ZipArchive::unchangeArchive

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) Revert all global changes done in the archive. bool ZipArchive::unchangeArchive ( void ) Revert all global changes to the archive. For now, this only reverts archive comment changes. Returns: Returns TRUE on success or FALSE on failure.

ZipArchive::unchangeAll

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) Undo all changes done in the archive bool ZipArchive::unchangeAll ( void ) Undo all changes done in the archive. Returns: Returns TRUE on success or FALSE on failure.