Easy Tutorial
❮ Php Password_Get_Info Func Misc Ignore User Abort ❯

PHP zip_entry_open() Function



Definition and Usage

The zip_entry_open() function opens a zip archive for reading.

If successful, the function returns TRUE. If it fails, it returns FALSE.

Syntax

Parameter Description
zip Required. Specifies the zip resource to read (a zip file opened by zip_open()).
zip_entry Required. Specifies the zip entry resource to open (a zip entry opened by zip_read()).
mode Optional. Specifies the access type for the zip archive entry. Note: In PHP 5, mode is ignored and always set to "rb". This is because zip support in PHP is read-only.

Example


❮ Php Password_Get_Info Func Misc Ignore User Abort ❯