mirror of
https://github.com/php/php-src.git
synced 2025-01-08 12:04:24 +08:00
21 lines
218 B
PHP
21 lines
218 B
PHP
--TEST--
|
|
Closures can be generators
|
|
--FILE--
|
|
<?php
|
|
|
|
$genFactory = function() {
|
|
yield 1;
|
|
yield 2;
|
|
yield 3;
|
|
};
|
|
|
|
foreach ($genFactory() as $value) {
|
|
var_dump($value);
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
int(2)
|
|
int(3)
|