Generator::current

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

Generator::currentObtener el valor producido

Descripción

public Generator::current(): mixed

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Devuelve el valor producido.

add a note

User Contributed Notes 1 note

up
4
gib-o-master
3 years ago
current() advances untouched generator, same as next(), it makes the first step/iteration. the following calls will not.

non-yielded value will be NULL
To Top