Php/docs/splfileobject.next

来自菜鸟教程
跳转至:导航、​搜索

SplFileObject::next

(PHP 5 >= 5.1.0, PHP 7)

SplFileObject::nextRead next line


说明

public SplFileObject::next ( ) : void

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();}?>

参见