PHP Portal » PHP Handbuch » gzeof

Werbung

gzeof


(PHP 4, PHP 5)

gzeofTest for end-of-file on a gz-file pointer

Beschreibung

int gzeof ( resource $zp )

Tests the given GZ file pointer for EOF (end-of-file).

Parameter-Liste

zp

The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen().

Rückgabewerte

Returns TRUE if the gz-file pointer is at EOF or an error occurs; otherwise returns FALSE.

Beispiele

PHP Code
1
2
3
4
5
$gz = gzopen('somefile.gz', 'r'); while (!gzeof($gz)) { echo gzgetc($gz); } gzclose($gz);