2014-12-02 84 views
1

我試圖在名稱空間`// ns1:Location // ns1:District中獲取元素DistrictName,但是沒有任何返回。這是我迄今爲止所做的。獲取多個命名空間中的元素xml

foreach($xml1->xpath('//ns1:Venue') as $header){ 
    $result = ($header->xpath('//ns1:Venue//ns1:Location//ns1:District//ns1:DistrictName')); // Should output 'something'. 
    echo "Local2: " . (string) $result[0]. "</br>"; 
} 

soap_response_xml:

... 
<ns1:Venue> 
    <ns1:Name>Rock</ns1:Name> 
    <ns1:Contact> 
    <ns1:Name>Rock</ns1:Name> 
    </ns1:Contact> 
    <ns1:Location> 
    <ns1:District> 
     <ns2:DistrictId>11</ns2:DistrictId> 
     <ns2:DistrictName>XXXXXXX</ns2:DistrictName> 
    </ns1:District> 
    <ns1:Municipaly> 
     <ns2:MunicipalityId>1111</ns2:MunicipalityId> 
     <ns2:MunicipalityName>XXXXXXXXX</ns2:MunicipalityName> 
    </ns1:Municipaly> 
    </ns1:Location> 
</ns1:Venue> 

什麼,我做錯了什麼?

回答

1

如果你的XML是一個字符串,最簡單的也許是去除命名空間:

$string = str_replace(array('ns1:', 'ns2:'), array('', ''), $string); 
$xml = new SimpleXMLElement($string); 
foreach($xml->xpath('//Venue') as $header){ 
    $result = ($header->xpath('Location/District/DistrictName')); // Should output 'something'. 
    echo "Local2: " . (string) $result[0]. "</br>"; 
} 

另外:不要使用//當它是沒有必要的。 //的意思是「後代」。路徑分隔符是/

+0

感謝您的建議,工作正常:) – seal 2014-12-02 13:31:23