zip_entry_read

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Read from an open directory entry string zip_entry_read ( resource $zip_entry [, int $length = 1024 ] ) Reads from an open directory entry. Parameters: zip_entry A directory entry returned by zip_read(). length The number of bytes to return. Note: This should be th

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_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_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_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.

ZipArchive::statIndex

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) Get the details of an entry defined by its index. array ZipArchive::statIndex ( int $index [, int $flags ] ) The function obtains information about the entry defined by its index. Parameters: index Index of the entry flags ZipArchive::FL_UNCHANGED may be ORed to it to request information

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.

ZipArchive::statName

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.5.0) Get the details of an entry defined by its name. array ZipArchive::statName ( string $name [, int $flags ] ) The function obtains information about the entry defined by its name. Parameters: name Name of the entry flags The flags argument specifies how the name lookup should be done. Also

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::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.