数组索引XML文件的递归方法

时间:2019-04-23 21:23:08

标签: php xml

尝试递归索引XML

曾经修改过列出的代码,但没有骰子。

public function hasChildren($node) {
    if (sizeof($node) != 0) {
        foreach ($node as $value) {
            $value = $this->nodeToIndexedArray($value);
            return $this->hasChildren($value);
        }
    } else {
        return $node;
    }
}

0 个答案:

没有答案