downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SplFileObject::rewind> <SplFileObject::key
[edit] Last updated: Sat, 07 Jan 2012

view this page in

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.

인수

이 함수는 인수가 없습니다.

반환값

값을 반환하지 않습니다.

예제

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

참고



add a note add a note User Contributed Notes SplFileObject::next
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites