GoLang SplFileObject::next

request it (325)
GoLang replacement for PHP's SplFileObject::next [edit | history]



Do you know a GoLang replacement for PHP's SplFileObject::next? Write it!

PHP SplFileObject::next

PHP original manual for SplFileObject::next [ show | php.net ]

SplFileObject::next

(PHP 5 >= 5.1.0, PHP 7)

SplFileObject::nextRead next line

Description

public void SplFileObject::next ( void )

Moves ahead to the next line in the file.

Parameters

This function has no parameters.

Return Values

No value is returned.

Examples

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

See Also