zip_open> <zip_entry_open
Last updated: Fri, 24 Feb 2012

zip_entry_read

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)

zip_entry_readLê de um arquivo aberto

Descrição

string zip_entry_read ( resource $zip_entry [, int $length ] )

Lê de um arquivo aberto.

Parâmetros

zip_entry

Um arquivo retornado pela zip_read().

length

O número de bytes para retornar. Se não especificado, esta função irá tentar ler 1024 bytes.

Nota:

Este deve ser o tamanho não comprimido que você deseja ler.

Valor Retornado

Retorna a informação lida, ou FALSE se o fim do arquivo for encontrado.

Veja Também



User Contributed Notes
zip_entry_read
Twan
02-May-2010 03:48
It seems that zip_entry_read returns an empty string (i.e. '') at the end of file instead of FALSE. At least in PHP 5.3 on Windows XP.
Matt
16-Nov-2005 02:53
When reading from a zip file if the initial call to zip_entry_read() returns false it would be advisable to run mkdir with the file name since it it very likely that the zero length file was a directory and attempts to save the files within the directory will fail if you dont create it first

zip_open> <zip_entry_open
Last updated: Fri, 24 Feb 2012