Iterator::next
PHP Manual
PHP Manual»Iterator»Iterator::next

Iterator::next

(PHP 5, PHP 7, PHP 8)

Iterator::nextMove forward to next element

Опис

public function Iterator::next(): void

Moves the current position to the next element.

Зауваження:

This method is called after each foreach loop.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Any returned value is ignored.

To Top