我总是在ArrayIterator的forearh中丢失第二项(#1)并删除每个元素。
$cnt = 0;
$a = new ArrayIterator();
$a->append(++$cnt);
$a->append(++$cnt);
$a->append(++$cnt);
$a->append(++$cnt);
$a->append(++$cnt);
foreach ($a as $i => $item) {
print_r("$i => $item".PHP_EOL);
$a->offsetUnset($i);
}
print_r('count: '.$a->count().PHP_EOL);
foreach ($a as $i => $item) {
print_r("lost! $i => $item".PHP_EOL);
}
输出:
0 => 1
2 => 3
3 => 4
4 => 5
count: 1
lost! 1 => 2
怎么可能? OO
$ php -v
PHP 5.5.37 (cli) (built: Jun 22 2016 16:14:46)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2015 Zend Technologies
答案 0 :(得分:1)
恭喜!您找到了documented bug in ArrayIterator
提取物:
ArrayIterator在调用时总是跳过数组中的第二个元素 offsetUnset();循环时它就在它上面。
使用迭代器中的键并在实际的ArrayObject中取消设置 预期
答案 1 :(得分:0)
似乎只有方法ArrayIterator
耗尽offsetUnset
。
这是使用do..while
:
do {
print_r("{$a->key()} => {$a->current()}".PHP_EOL);
$a->offsetUnset($a->key());
} while ($a->count());
print_r('count: '.$a->count() . PHP_EOL);
输出:
0 => 1
1 => 2
2 => 3
3 => 4
4 => 5
count: 0