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 writeSYNOPSISint gzwrite (resource $zp, string $string, [int $length])DESCRIPTIONgzwrite(3) writes the contents of $string to the given gz-file.PARAMETERSo $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 VALUESReturns the number of (uncompressed) bytes written to the given gz-file stream.EXAMPLESExample #1 gzwrite(3) example <?php $string = 'Some information to compress'; $gz = gzopen('somefile.gz','w9'); gzwrite($gz, $string); gzclose($gz); ?>SEE ALSOgzread(3), gzopen(3). PHP Documentation Group GZWRITE(3)
Related Man Pages |
---|
compress::zlib(3) - redhat |
socket_write(3) - php |
fgetss(3) - php |
gzgetss(3) - php |
strcspn(3) - php |
Similar Topics in the Unix Linux Community |
---|
length of the string |
uncompress of zlib |
AlphaNumeric String Operations |