Files
php_8/generators/combine_from.php
2022-05-01 16:49:11 +03:00

15 lines
262 B
PHP

<?php
function square($value)
{
yield $value * $value;
}
function even_square($arr) {
foreach($arr as $value) {
if ($value % 2 == 0) yield from square($value);
}
}
$arr = [1, 2, 3, 4, 5, 6];
foreach(even_square($arr) as $val) echo "$val ";