gzread
gzread
Binary-safe gz-file read
**gzread** resource $stream int $length
reads up to bytes
from the given gz-file pointer. Reading stops when
(uncompressed) bytes have been read
or is reached, whichever comes first.
gzread``length``length
stream
The gz-file pointer. It must be valid, and must point to a file
successfully opened by .
gzopen
lengthThe number of bytes to read.
The data that have been read, return.falseforfailure.
Voorbeeld: example
<?php
// get contents of a gz-file into a string
$filename = "/usr/local/something.txt.gz";
$zd = gzopen($filename, "r");
$contents = gzread($zd, 10000);
gzclose($zd);
?>
gzwrite``gzopen``gzgets``gzgetss``gzfile``gzpassthru