SplFileObject
PHP Manual

SplFileObject::next

(PHP 5 >= 5.1.0)

SplFileObject::nextRead next line

説明

public void SplFileObject::next ( void )

Moves ahead to the next line in the file.

パラメータ

この関数にはパラメータはありません。

返り値

値を返しません。

例1 SplFileObject::next example

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

参考


SplFileObject
PHP Manual