mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
116 lines
1.8 KiB
PHP
116 lines
1.8 KiB
PHP
--TEST--
|
|
ZE2 iterators and break
|
|
--SKIPIF--
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
|
|
--FILE--
|
|
<?php
|
|
class c_iter implements Iterator {
|
|
|
|
private $obj;
|
|
private $num = 0;
|
|
|
|
function __construct($obj) {
|
|
echo __METHOD__ . "\n";
|
|
$this->obj = $obj;
|
|
}
|
|
function rewind() {
|
|
echo __METHOD__ . "\n";
|
|
}
|
|
function valid() {
|
|
$more = $this->num < $this->obj->max;
|
|
echo __METHOD__ . ' = ' .($more ? 'true' : 'false') . "\n";
|
|
return $more;
|
|
}
|
|
function current() {
|
|
echo __METHOD__ . "\n";
|
|
return $this->num;
|
|
}
|
|
function next() {
|
|
echo __METHOD__ . "\n";
|
|
$this->num++;
|
|
}
|
|
function key() {
|
|
return $this->num;
|
|
}
|
|
}
|
|
|
|
class c implements IteratorAggregate {
|
|
|
|
public $max = 4;
|
|
|
|
function getIterator() {
|
|
echo __METHOD__ . "\n";
|
|
return new c_iter($this);
|
|
}
|
|
}
|
|
|
|
$t = new c();
|
|
|
|
foreach($t as $v) {
|
|
if ($v == 0) {
|
|
echo "continue outer\n";
|
|
continue;
|
|
}
|
|
foreach($t as $w) {
|
|
if ($w == 1) {
|
|
echo "continue inner\n";
|
|
continue;
|
|
}
|
|
if ($w == 2) {
|
|
echo "break inner\n";
|
|
break;
|
|
}
|
|
echo "double:$v:$w\n";
|
|
}
|
|
if ($v == 2) {
|
|
echo "break outer\n";
|
|
break;
|
|
}
|
|
}
|
|
|
|
print "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
c::getIterator
|
|
c_iter::__construct
|
|
c_iter::rewind
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
continue outer
|
|
c_iter::next
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
c::getIterator
|
|
c_iter::__construct
|
|
c_iter::rewind
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
double:1:0
|
|
c_iter::next
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
continue inner
|
|
c_iter::next
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
break inner
|
|
c_iter::next
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
c::getIterator
|
|
c_iter::__construct
|
|
c_iter::rewind
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
double:2:0
|
|
c_iter::next
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
continue inner
|
|
c_iter::next
|
|
c_iter::valid = true
|
|
c_iter::current
|
|
break inner
|
|
break outer
|
|
Done
|