mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
9 lines
108 B
PHP
9 lines
108 B
PHP
<?php
|
|
function generator()
|
|
{
|
|
yield 1;
|
|
yield from [2, 3];
|
|
}
|
|
|
|
foreach (generator() as $i) echo "$i ";
|