PHP Conference Kansai 2025

Generator::current

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

Generator::currentRécupère la valeur cédée

Description

public Generator::current(): mixed

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Retourne la valeur cédée.

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