1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/spl/tests/bug42703.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

42 lines
638 B
PHP

--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());
?>
--EXPECT--
string(3) "boo"
NULL
NULL