Box\Spout\Reader\CSV\RowIterator::next PHP Метод

next() публичный Метод

Move forward to next element. Reads data for the next unprocessed row.
public next ( ) : void
Результат void
    public function next()
    {
        $this->hasReachedEndOfFile = $this->globalFunctionsHelper->feof($this->filePointer);
        if (!$this->hasReachedEndOfFile) {
            $this->readDataForNextRow();
        }
    }