Query: gzclose
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GZCLOSE(3) 1 GZCLOSE(3) gzclose - Close an open gz-file pointerSYNOPSISbool gzclose (resource $zp)DESCRIPTIONCloses the given gz-file pointer.PARAMETERSo $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3).RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 gzclose(3) example <?php $gz = gzopen('somefile.gz','w9'); gzputs ($gz, 'I was added to somefile.gz'); gzclose($gz); ?>SEE ALSOgzopen(3). PHP Documentation Group GZCLOSE(3)
| Related Man Pages |
|---|
| php_check_syntax(3) - php |
| fbsql_close(3) - php |
| fgetc(3) - php |
| ftp_fput(3) - php |
| gzseek(3) - php |
| Similar Topics in the Unix Linux Community |
|---|
| String pointer does not work |