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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
--TEST--
ZE2 iterators and array wrapping
--FILE--
<?php
class ai implements Iterator {
private $array;
private $key;
private $current;
function __construct() {
$this->array = array('foo', 'bar', 'baz');
}
function rewind(): void {
reset($this->array);
$this->next();
}
function valid(): bool {
return $this->key !== NULL;
}
function key(): mixed {
return $this->key;
}
function current(): mixed {
return $this->current;
}
function next(): void {
$this->key = key($this->array);
$this->current = current($this->array);
next($this->array);
}
}
class a implements IteratorAggregate {
public function getIterator(): Traversable {
return new ai();
}
}
$array = new a();
foreach ($array as $property => $value) {
print "$property: $value\n";
}
#$array = $array->getIterator();
#$array->rewind();
#$array->valid();
#var_dump($array->key());
#var_dump($array->current());
echo "===2nd===\n";
$array = new ai();
foreach ($array as $property => $value) {
print "$property: $value\n";
}
echo "===3rd===\n";
foreach ($array as $property => $value) {
print "$property: $value\n";
}
?>
--EXPECT--
0: foo
1: bar
2: baz
===2nd===
0: foo
1: bar
2: baz
===3rd===
0: foo
1: bar
2: baz
|