PHP Conference Kansai 2025

Generator::current

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

Generator::currentGetirilen değeri döndürür

Açıklama

public Generator::current(): mixed

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Getirilen değeri döndürür.

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