mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
20 lines
373 B
PHP
Executable File
20 lines
373 B
PHP
Executable File
--TEST--
|
|
Bug #31486 (ArrayIterator::next segfaults)
|
|
--FILE--
|
|
<?php
|
|
$obj = new stdClass;
|
|
$obj->var1=1;
|
|
|
|
$ao = new ArrayObject($obj);
|
|
|
|
$i = $ao->getIterator();
|
|
|
|
$ao->offsetUnset($i->key());
|
|
$i->next();
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Notice: ArrayIterator::next(): Array was modified outside object and internal position is no longer valid in %sbug31346.php on line %d
|
|
===DONE===
|