mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
42 lines
639 B
PHP
Executable File
42 lines
639 B
PHP
Executable File
--TEST--
|
|
Bug #42703 (Exception raised in an iterator::current() causes segfault in FilterIterator)
|
|
--FILE--
|
|
<?php
|
|
class BlaIterator implements Iterator
|
|
{
|
|
public function rewind() { }
|
|
|
|
public function next() { }
|
|
|
|
public function valid() {
|
|
return true;
|
|
}
|
|
|
|
public function current()
|
|
{
|
|
throw new Exception('boo');
|
|
}
|
|
|
|
public function key() { }
|
|
}
|
|
|
|
$it = new BlaIterator();
|
|
$itit = new IteratorIterator($it);
|
|
|
|
try {
|
|
foreach($itit as $key => $value) {
|
|
echo $key, $value;
|
|
}
|
|
}
|
|
catch (Exception $e) {
|
|
var_dump($e->getMessage());
|
|
}
|
|
|
|
var_dump($itit->current());
|
|
var_dump($itit->key());
|
|
?>
|
|
--EXPECTF--
|
|
string(3) "boo"
|
|
NULL
|
|
NULL
|