mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
27 lines
509 B
Plaintext
27 lines
509 B
Plaintext
|
--TEST--
|
||
|
Bug #49269 (Ternary operator fails on Iterator object when used inside foreach declaration).
|
||
|
--FILE--
|
||
|
<?php
|
||
|
class TestObject implements Iterator
|
||
|
{
|
||
|
public $n = 0;
|
||
|
function valid()
|
||
|
{
|
||
|
return ($this->n < 3);
|
||
|
}
|
||
|
function current() {return $this->n;}
|
||
|
function next() {$this->n++;}
|
||
|
function key() { }
|
||
|
function rewind() {$this->n = 0;}
|
||
|
}
|
||
|
|
||
|
|
||
|
$array_object = new TestObject();
|
||
|
|
||
|
foreach ((true ? $array_object : $array_object) as $item) echo "$item\n";
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
0
|
||
|
1
|
||
|
2
|