PHP Conference Kansai 2025

Generator::current

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

Generator::currentGet the yielded value

Descrizione

public Generator::current(): mixed

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the yielded value.

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