Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gzgets(3) [php man page]

GZGETS(3)								 1								 GZGETS(3)

gzgets - Get line from file pointer

SYNOPSIS
string gzgets (resource $zp, [int $length]) DESCRIPTION
Gets a (uncompressed) string of up to length - 1 bytes read from the given file pointer. Reading ends when length - 1 bytes have been read, on a newline, or on EOF (whichever comes first). PARAMETERS
o $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3). o $length - The length of data to get. RETURN VALUES
The uncompressed string, or FALSE on error. EXAMPLES
Example #1 gzgets(3) example <?php $handle = gzopen('somefile.gz', 'r'); while (!gzeof($handle)) { $buffer = gzgets($handle, 4096); echo $buffer; } gzclose($handle); ?> SEE ALSO
gzopen(3), gzgetc(3), gzwrite(3). PHP Documentation Group GZGETS(3)

Check Out this Related Man Page

GZWRITE(3)								 1								GZWRITE(3)

gzwrite - Binary-safe gz-file write

SYNOPSIS
int gzwrite (resource $zp, string $string, [int $length]) DESCRIPTION
gzwrite(3) writes the contents of $string to the given gz-file. PARAMETERS
o $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3). o $string - The string to write. o $length - The number of uncompressed bytes to write. If supplied, writing will stop after $length (uncompressed) bytes have been written or the end of $string is reached, whichever comes first. Note Note that if the $length argument is given, then the magic_quotes_runtime configuration option will be ignored and no slashes will be stripped from $string. RETURN VALUES
Returns the number of (uncompressed) bytes written to the given gz-file stream. EXAMPLES
Example #1 gzwrite(3) example <?php $string = 'Some information to compress'; $gz = gzopen('somefile.gz','w9'); gzwrite($gz, $string); gzclose($gz); ?> SEE ALSO
gzread(3), gzopen(3). PHP Documentation Group GZWRITE(3)
Man Page