blob: 611dbc965274324933650fd2070d2cabf0a96f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
--TEST--
Generators work properly in MultipleIterator
--FILE--
<?php
function gen1() {
yield 'a';
yield 'aa';
}
function gen2() {
yield 'b';
yield 'bb';
}
$it = new MultipleIterator;
$it->attachIterator(gen1());
$it->attachIterator(gen2());
foreach ($it as $values) {
var_dump($values);
}
?>
--EXPECT--
array(2) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
}
array(2) {
[0]=>
string(2) "aa"
[1]=>
string(2) "bb"
}
|