简单的 xml php 数组通配符


Simple xml php array wildcard

你能建议一下 php 中简单 xml 的数组通配符是什么吗?我想从数组的第二部分获得通配符响应。它只有在错误填充了一个数字时才会起作用,通配符是什么,所以它会带回 stuff 数组 0 中的所有错误。

$xml->Test->Account->Information->Stuff[0]->Next->Next->Error[]['Duration'];

类似

$results = array();
foreach ($xml->Test->Account->Information->Stuff[0]->Next->Next->Error as $error) {
    $results[] = $error['Duration'];
}