PHP.nl

gzpassthru

gzpassthru

Output all remaining data on a gz-file pointer

int **gzpassthru** resource $stream

Reads to on the given gz-file pointer from the current position and writes the (uncompressed) results to standard output.

Opmerking: > You may need to call to reset the file pointer to the beginning of the file if you have already written data to it. gzrewind

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 function, which saves you the call. readgzfile``gzopen

stream The gz-file pointer. It must be valid, and must point to a file successfully opened by . gzopen

The number of uncompressed characters read from and passed through to the input. gz

Voorbeeld: example

<?php
$fp = gzopen('file.gz', 'r');
gzpassthru($fp);
gzclose($fp);
?>