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

search for in the

SplFileObject::rewind> <SplFileObject::key
[edit] Last updated: Fri, 07 Jun 2013

view this page in

SplFileObject::next

(PHP 5 >= 5.1.0)

SplFileObject::nextRead next line

Descrierea

public void SplFileObject::next ( void )

Moves ahead to the next line in the file.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Nu este întoarsă nici o valoare.

Exemple

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

Vedeți de asemenea



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

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