'rb' is a valid mode, and means Read-Only Binary Mode. This mode is used for portability reasons (see fopen).
(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0)
zip_entry_open — 打开用于读取的目录实体
$zip
, resource $zip_entry
[, string $mode
] ) : bool打开ZIP文件中的目录实体以便后续读取。
zip
由函数zip_open()返回的有效的资源句柄。
zip_entry
由函数zip_read()返回的目录实体。
mode
任何在fopen()处理文档中指定的模式。
Note:
由于ZIP在PHP中只支持读取模式,所以
mode
实际上总是被设置为"rb"(其他模式会被忽略)。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Note:
与fopen()和其他类似的方法不同,zip_entry_open() 的返回值只用于标示该操作结果,不需要读取或关闭该目录实体。
'rb' is a valid mode, and means Read-Only Binary Mode. This mode is used for portability reasons (see fopen).