Read next line
Moves ahead to the next line in the file.
This function has no parameters.
No value is returned.
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();}?>