SplFileObject::valid

(PHP 5 >= 5.1.0)

SplFileObject::validNot at EOF

說明

public bool SplFileObject::valid ( void )

Check whether EOF has been reached.

參數

此函式沒有參數。

回傳值

Returns TRUE if not reached EOF, FALSE otherwise.

範例

Example #1 SplFileObject::valid() example

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

參見

add a note add a note

User Contributed Notes

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