php man page for gzpassthru

Query: gzpassthru

OS: php

Section: 3

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

GZPASSTHRU(3)								 1							     GZPASSTHRU(3)

gzpassthru - Output all remaining data on a gz-file pointer

SYNOPSIS
int gzpassthru (resource $zp)
DESCRIPTION
Reads to EOF on the given gz-file pointer from the current position and writes the (uncompressed) results to standard output. Note You may need to call gzrewind(3) to reset the file pointer to the beginning of the file if you have already written data to it. Tip If you just want to dump the contents of a file to the output buffer, without first modifying it or seeking to a particular offset, you may want to use the readgzfile(3) function, which saves you the gzopen(3) call.
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 number of uncompressed characters read from $gz and passed through to the input, or FALSE on error.
EXAMPLES
Example #1 gzpassthru(3) example <?php $fp = gzopen('file.gz', 'r'); gzpassthru($fp); gzclose($fp); ?> PHP Documentation Group GZPASSTHRU(3)
Related Man Pages
gzopen(3) - php
bzread(3) - php
gzgetss(3) - php
gzwrite(3) - php
rewind(3) - php
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
Forum Video Tutorial: How to Use Code Tags
Status of UNIX.COM Forum Transformation
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Don Cragun
Please Welcome Nicki Paul to the Moderator Team!