我有一个看似不可能的时间来了解简单的XML和肥皂。我已将文件读入简单的xml,这是显示它正确读取的结果:
echo $garages->asXML();
// result
<?xml version="1.0"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetListOfFittingCentresResponse xmlns="http://TyreMen.com/UkTyreNetwork/">
<GetListOfFittingCentresResult xmlns:a="http://TyreMen.com/UkTyreNetwork/Response/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:Method>GetListOfFittingCentres</a:Method>
<a:Result>
<a:Code>0</a:Code>
<a:Description>Call completed successfully</a:Description>
</a:Result>
<a:FittingCentres xmlns:b="http://TyreMen.com/UkTyreNetwork/DataTypes/">
<b:FittingCentre>
<b:Address1>Tyremen</b:Address1>
<b:Address2>Witty Street</b:Address2>
<b:Address3>Hull</b:Address3>
<b:Address4/>
<b:BranchName>Witty Street</b:BranchName>
<b:GEOLocation>
<b:Latitude>53.732342619574524</b:Latitude>
<b:Longitude>-0.3738183264892996</b:Longitude>
</b:GEOLocation>
</b:FittingCentre>
</a:FittingCentres>
</GetListOfFittingCentresResult>
</GetListOfFittingCentresResponse>
</s:Body>
</s:Envelope>
但我不能为我的生活找出如何引用任何数据。我试过这两个:
$t = $garages->children('s', TRUE)->Body->GetListOfFittingCentresResponse->GetListOfFittingCentresResult->children('a', TRUE)->FittingCentres->children('b', TRUE)->FittingCentre;
foreach ($t as $garage) {
echo $garage->Address1."<br />";
}
和
echo $garages->GetListOfFittingCentresResponse->GetListOfFittingCentresResult->FittingCentres->FittingCentre[0]->Address1;
两者都只是抛出错误,我害怕我没有想法。
请有人建议我在哪里做白痴。谢谢:))
答案 0 :(得分:1)
$t = $garages->children('s', TRUE)->Body->GetListOfFittingCentresResponse ...
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
这不起作用,因为Body
元素在其自己的命名空间中没有名为GetListOfFittingCentresResponse
的子元素。相反,您需要获取默认命名空间中的所有子项以获取它:
$xml->children('s', 1)->Body->children()->GetListOfFittingCentresResponse
^^^^^^^^^^^^
您需要在整个遍历中正确执行此操作。
这里解释了如何使用simplexml访问元素而不是默认文档命名空间:
这也是这类问题的参考问题。
更好的选择通常是使用Xpath进行遍历:
$xml->registerXPathNamespace('s', 'http://schemas.xmlsoap.org/soap/envelope/');
$xml->registerXPathNamespace('n', 'http://TyreMen.com/UkTyreNetwork/');
$xml->xpath('/*/s:Body/n:GetListOfFittingCentresResponse');