簡體   English   中英

從xml標記中提取值

[英]Extract value from xml tag

我試圖從標簽中提取RecordID =“1014276”

我嘗試過:

$result = curl_exec($ch);
curl_close($ch);

$xml2 = simplexml_load_string($result);
echo $latitude = (string) $xml2['RecordID'];

這是XML響應:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soap:Body>
      <ns1:createDataResponse xmlns:ns1="http://3e.pl/ADInterface">
         <StandardResponse RecordID="1014276" xmlns="http://3e.pl/ADInterface"/>
      </ns1:createDataResponse>
   </soap:Body>
</soap:Envelope>

您可以將此作為

$xml = '<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soap:Body>
  <ns1:createDataResponse xmlns:ns1="http://3e.pl/ADInterface">
     <StandardResponse RecordID="1014276" xmlns="http://3e.pl/ADInterface"/>
  </ns1:createDataResponse>
 </soap:Body>
</soap:Envelope>';

$p = xml_parser_create();
xml_parse_into_struct($p, $xml, $values, $index);
xml_parser_free($p);

echo $values[3]['attributes']['RECORDID'];

這不僅僅是訪問屬性,首先必須選擇正確的元素。 使用XPath是這種結構中最常用的注釋方式。 由於它具有為數據定義的默認命名空間,因此您需要首先使用SimpleXMLElement注冊它(使用$xml2->registerXPathNamespace("ns1","http://3e.pl/ADInterface");

然后,您可以使用XPAth表達式//ns1:StandardResponse找到該元素。 xpath()方法返回找到的元素列表時,使用[0]只提取第一個匹配項。 然后,您應該能夠使用結果元素在代碼中提取屬性...

$xml2 = simplexml_load_string($result);
$xml2->registerXPathNamespace("ns1","http://3e.pl/ADInterface");

$response = $xml2->xpath("//ns1:StandardResponse")[0];
echo (string) $response['RecordID'];

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM