Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gzclose(3) [php man page]

GZCLOSE(3)								 1								GZCLOSE(3)

gzclose - Close an open gz-file pointer

SYNOPSIS
bool gzclose (resource $zp) DESCRIPTION
Closes the given gz-file pointer. PARAMETERS
o $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3). RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 gzclose(3) example <?php $gz = gzopen('somefile.gz','w9'); gzputs ($gz, 'I was added to somefile.gz'); gzclose($gz); ?> SEE ALSO
gzopen(3). PHP Documentation Group GZCLOSE(3)

Check Out this Related Man Page

GZSEEK(3)								 1								 GZSEEK(3)

gzseek - Seek on a gz-file pointer

SYNOPSIS
int gzseek (resource $zp, int $offset, [int $whence = SEEK_SET]) DESCRIPTION
Sets the file position indicator for the given file pointer to the given offset byte into the file stream. Equivalent to calling (in C) gzseek(zp, offset, SEEK_SET). If the file is opened for reading, this function is emulated but can be extremely slow. If the file is opened for writing, only forward seeks are supported; gzseek(3) then compresses a sequence of zeroes up to the new starting position. PARAMETERS
o $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3). o $offset - The seeked offset. o $whence -$whence values are: o SEEK_SET - Set position equal to $offset bytes. o SEEK_CUR - Set position to current location plus $offset. If $whence is not specified, it is assumed to be SEEK_SET. RETURN VALUES
Upon success, returns 0; otherwise, returns -1. Note that seeking past EOF is not considered an error. EXAMPLES
Example #1 gzseek(3) example <?php $gz = gzopen('somefile.gz', 'r'); gzseek($gz,2); echo gzgetc($gz); gzclose($gz); ?> SEE ALSO
gztell(3), gzrewind(3). PHP Documentation Group GZSEEK(3)
Man Page