PHP の再帰イテレータの非常に奇妙な動作を見つけました。子の配列キーが 0 から始まる数値キーでない場合、子は反復されません。例は次のとおりです。
class Foo{
private $id, $children;
public function __construct($id, array $children = array()) {
$this->id = $id;
$this->children = $children;
}
public function getId() {
return $this->id;
}
public function hasChildren()
{
return count($this->children) > 0;
}
public function getChildren()
{
return $this->children;
}
}
class Baz implements RecursiveIterator {
private $position = 0, $children;
public function __construct(Foo $foo) {
$this->children = $foo->getChildren();
}
public function valid()
{
return isset($this->children[$this->position]);
}
public function next()
{
$this->position++;
}
public function current()
{
return $this->children[$this->position];
}
public function rewind()
{
$this->position = 0;
}
public function key()
{
return $this->position;
}
public function hasChildren()
{
return $this->current()->hasChildren();
}
public function getChildren()
{
return new Baz($this->current());
}
}
以下は期待どおりに機能します。
// Children array keys are numeric and starts from 0. It works.
$foo = new Foo(1, array(
new Foo(2,
array(new Foo(3)))
));
foreach(new RecursiveIteratorIterator(new Baz($foo), RecursiveIteratorIterator::SELF_FIRST) as $j) {
var_dump($j->getId());
}
出力:
int 2
int 3
同じコードですが、子キーは 2 から始まります。
// Now array keys starts from 2 and it does not work.
$foo = new Foo(1, array(
2 => new Foo(2,
array(3 => new Foo(3)))
));
foreach(new RecursiveIteratorIterator(new Baz($foo), RecursiveIteratorIterator::SELF_FIRST) as $j) {
var_dump($j->getId());
}
出力は空です。
それはバグですか、それとも何ですか?PHP のバージョンは 5.3.27/Windows x86 です。