尝试递归索引XML
曾经修改过列出的代码,但没有骰子。
public function hasChildren($node) {
if (sizeof($node) != 0) {
foreach ($node as $value) {
$value = $this->nodeToIndexedArray($value);
return $this->hasChildren($value);
}
} else {
return $node;
}
}