current() 使未触发的生成器前进,与 next() 相同,它执行第一步/迭代。后续调用不会。
未生成的值将为 NULL
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
Generator::current — 获取生成的值
此函数没有参数。
返回生成的值。
<?php
function gen_one_to_three() {
for ($i = 1; $i <= 3; $i++) {
// 注意 $i 在生成之间是保持的。
yield $i;
}
}
$generator = gen_one_to_three();
foreach ($generator as $value) {
echo "regular : ".$value , PHP_EOL;
echo "With current function : ".$generator->current(),PHP_EOL;
}
?>