Box\Spout\Reader\XLSX\SheetIterator::next PHP Метод

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

Move forward to next element
public next ( ) : void
Результат void
    public function next()
    {
        // Using isset here because it is way faster than array_key_exists...
        if (isset($this->sheets[$this->currentSheetIndex])) {
            $currentSheet = $this->sheets[$this->currentSheetIndex];
            $currentSheet->getRowIterator()->end();
            $this->currentSheetIndex++;
        }
    }