百科狗-知识改变命运!
--

gzread() - zlib函数(压缩文件)

百变鹏仔11个月前 (11-21)阅读数 23#技术干货
文章标签范例

gzread()

(PHP 4, PHP 5, PHP 7)

Binary-safe gz-file read

说明

gzread(resource $zp,int $length): string

gzread() reads up to$lengthbytes from the given gz-file pointer. Reading stops when$length(uncompressed)bytes have been read or EOF is reached, whichever comes first.

参数

$zp

The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen().

$length

The number of bytes to read.

返回值

The data that have been read.

范例

gzread() - zlib函数(压缩文件)

gzread() example

参见

  • gzwrite()Binary-safe gz-file write
  • gzopen()Open gz-file
  • gzgets()Get line from file pointer
  • gzgetss()Get line from gz-file pointer and strip HTML tags
  • gzfile()Read entire gz-file into an array
  • gzpassthru()Output all remaining data on a gz-file pointer
Be careful when reading data in a loop. gzread() behaves a little differently than bzread() or fread(), it does NOT return false when reading past the end of stream. It instead returns an empty string.
So a loop like:
$handle = gzopen($file);
while (false !== $chunk = gzread($handle, $bytes)) {
  //...
}
will loop indefinitely.
Here is a function for returning the uncompressed filesize of a gzip file. The filesize is stored as a 32-bit integer in the end of the compressed file, that's how this function works. Additionally, this function checks to see if it's a real gzip compressed file before doing the work; if it isn't, then just like other gz- functions, it'll treat it just like a regular file and perform a normal filesize operation. Enjoy! 
I don't think it would be wise to open a whole gzip file (it _is_ compressed for a reason, and likely to be a very big file) into a single string. You would most likely hit the php memory limits. Instead, if you need to process the file, put your gzread calls in a loop, and read incrementally by a setting $length to a constant value.
As was shown to me in another forum there is a way to get the uncompressed size of the gz file by viewing the last 4 bytes of the gz file.
Here is a piece of code that will do this

This will read the last 4 bytes of the gz file and use it as the file int for the gzread.
Thanks to stereofrog for helping me with this code.
Note that this functions' behavior differs from fread in case of EOF.
When you read the last chunk (mean the last bytes from file), it is EOF just after gzread, but in case of fread you need to read once more to get EOF.
Hope, I am clear :)
Regarding finding out the lenght of the gz file.
For some reason the seek() function didn't worked, so, I've tried finding out the last 4 bytes using string functions.
That worked pretty well. Here is the code. 
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)