php man page for gzwrite

Query: gzwrite

OS: php

Section: 3

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

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)
Related Man Pages
fgets(3) - php
gzpassthru(3) - php
gzread(3) - php
gzwrite(3) - php
strlen(3) - php
Similar Topics in the Unix Linux Community
length of the string
uncompress of zlib
AlphaNumeric String Operations