SplFileObject::valid

(PHP 5 >= 5.1.0, PHP 7)

SplFileObject::validNot at EOF

Opis

public SplFileObject::valid ( void ) : bool

Check whether EOF has been reached.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns TRUE if not reached EOF, FALSE otherwise.

Przykłady

Przykład #1 SplFileObject::valid() example

<?php
// Loop over a file, line by line
$file = new SplFileObject("file.txt");
while (
$file->valid()) {
    echo 
$file->fgets();
}
?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top