PHP Conference Kansai 2025

Generator::current

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

Generator::currentGet the yielded value

Description

public Generator::current(): mixed

Parameters

This function has no parameters.

Return Values

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