mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
23 lines
367 B
PHP
23 lines
367 B
PHP
--TEST--
|
|
SPL: CachingIterator and __toString and flags = 0
|
|
--FILE--
|
|
<?php
|
|
|
|
function test($it)
|
|
{
|
|
foreach($it as $v)
|
|
{
|
|
var_dump((string)$it);
|
|
}
|
|
}
|
|
|
|
$ar = new ArrayIterator(array(1, 2, 3));
|
|
|
|
test(new CachingIterator($ar, 0));
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
|
|
Fatal error: Method CachingIterator::__toString() must not throw an exception in %siterator_036.php on line %d
|