SplFileObject::next

(PHP 5 >= 5.1.0, PHP 7)
Read next line
public void SplFileObject::next ( void )

Moves ahead to the next line in the file.

Returns:

No value is returned.

Examples:
SplFileObject::next() example
<?php
// Read through file line by line
$file = new SplFileObject("misc.txt");
while (!$file->eof()) {
    echo $file->current();
    $file->next();
}
?>

See also:

SplFileObject::current() -

SplFileObject::key() -

SplFileObject::seek() -

SplFileObject::rewind() -

SplFileObject::valid() -

doc_php
2016-02-24 16:20:20
Comments
Leave a Comment

Please login to continue.