SplFileObject
PHP Manual

SplFileObject::eof

(PHP 5 >= 5.1.0)

SplFileObject::eofReached end of file

Descrierea

public bool SplFileObject::eof ( void )

Determine whether the end of file has been reached

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns TRUE if file is at EOF, FALSE otherwise.

Exemple

Example #1 SplFileObject::eof() example

<?php
$file 
= new SplFileObject("fruits.txt");
while ( ! 
$file->eof()) {
    echo 
$file->fgets();
}
?>

Exemplul de mai sus va afișa ceva similar cu:

apple
banana
cherry
date
elderberry

Vedeți de asemenea


SplFileObject
PHP Manual