mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
13 lines
168 B
PHP
13 lines
168 B
PHP
<?php
|
|
function &reference()
|
|
{
|
|
$value = 3;
|
|
while ($value > 0) {
|
|
yield $value;
|
|
}
|
|
}
|
|
|
|
foreach (reference() as &$number) {
|
|
echo (--$number) . ' ';
|
|
}
|