Query: gzseek
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GZSEEK(3) 1 GZSEEK(3) gzseek - Seek on a gz-file pointerSYNOPSISint gzseek (resource $zp, int $offset, [int $whence = SEEK_SET])DESCRIPTIONSets 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.PARAMETERSo $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 VALUESUpon success, returns 0; otherwise, returns -1. Note that seeking past EOF is not considered an error.EXAMPLESExample #1 gzseek(3) example <?php $gz = gzopen('somefile.gz', 'r'); gzseek($gz,2); echo gzgetc($gz); gzclose($gz); ?>SEE ALSOgztell(3), gzrewind(3). PHP Documentation Group GZSEEK(3)
Related Man Pages |
---|
lseek(2) - redhat |
lseek(2) - linux |
fgetpos(3) - redhat |
fseek(3) - php |
gzseek(3) - php |
Similar Topics in the Unix Linux Community |
---|
Globus Toolkit 4 |