简单的xml php数组通配符

时间:2012-05-30 20:08:52

标签: php xml arrays simplexml

你能不能在PHP中为简单的xml建议数组通配符。我想从数组的第二部分得到一个通配符响应。只有在使用数字填充错误时,它才会起作用,通配符是什么,因此它将带回填充数组0中的所有错误。

实施例

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

1 个答案:

答案 0 :(得分:0)

类似

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