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 pointerSYNOPSISint gzpassthru (resource $zp)DESCRIPTIONReads 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.PARAMETERSo $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3).RETURN VALUESThe number of uncompressed characters read from $gz and passed through to the input, or FALSE on error.EXAMPLESExample #1 gzpassthru(3) example <?php $fp = gzopen('file.gz', 'r'); gzpassthru($fp); gzclose($fp); ?> PHP Documentation Group GZPASSTHRU(3)
Related Man Pages |
---|
stream_get_contents(3) - php |
fpassthru(3) - php |
gzgetss(3) - php |
gzseek(3) - php |
rewind(3) - php |
Similar Topics in the Unix Linux Community |
---|
Simple rules of the UNIX.COM forums: |
New Code Tags (Syntax Highlighting) |
Please Welcome Don Cragun as Lead Moderator |
Please Welcome Ravinder Singh to the Moderation Team |