php man page for gzgetc

Query: gzgetc

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

GZGETC(3)								 1								 GZGETC(3)

gzgetc - Get character from gz-file pointer

SYNOPSIS
string gzgetc (resource $zp)
DESCRIPTION
Returns a string containing a single (uncompressed) character read from the given gz-file pointer.
PARAMETERS
o $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3).
RETURN VALUES
The uncompressed character or FALSE on EOF (unlike gzeof(3)).
EXAMPLES
Example #1 gzgetc(3) example <?php $gz = gzopen('somefile.gz', 'r'); while (!gzeof($gz)) { echo gzgetc($gz); } gzclose($gz); ?>
SEE ALSO
gzopen(3), gzgets(3). PHP Documentation Group GZGETC(3)
Related Man Pages
feof(3) - php
gzopen(3) - php
mb_internal_encoding(3) - php
gzpassthru(3) - php
gzread(3) - php
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
UNIX.COM 2017 Year End Summary
New Code Tags (Syntax Highlighting)
Status of UNIX.COM Forum Transformation
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Wolf Machowitsch