Query: zip_entry_open
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ZIP_ENTRY_OPEN(3) 1 ZIP_ENTRY_OPEN(3) zip_entry_open - Open a directory entry for readingSYNOPSISbool zip_entry_open (resource $zip, resource $zip_entry, [string $mode])DESCRIPTIONOpens a directory entry in a zip file for reading.PARAMETERSo $zip - A valid resource handle returned by zip_open(3). o $zip_entry - A directory entry returned by zip_read(3). o $mode - Any of the modes specified in the documentation of fopen(3). Note Currently, $mode is ignored and is always "rb". This is due to the fact that zip support in PHP is read only access.RETURN VALUESReturns TRUE on success or FALSE on failure. Note Unlike fopen(3) and other similar functions, the return value of zip_entry_open(3) only indicates the result of the operation and is not needed for reading or closing the directory entry.SEE ALSOzip_entry_close(3), zip_entry_read(3). PHP Documentation Group ZIP_ENTRY_OPEN(3)