(PHP 5 >= 5.1.0)
SplFileObject::next — Read next line
Moves ahead to the next line in the file.
이 함수는 인수가 없습니다.
값을 반환하지 않습니다.
Example #1 SplFileObject::next example
<?php
// Read through file line by line
$file = new SplFileObject("misc.txt");
while (!$file->eof()) {
echo $file->current();
$file->next();
}
?>