从 SOAP 响应负载中的 xml 标记中提取值

问题描述 投票:0回答:2

我正在尝试从标签中提取 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>
php xml soap
2个回答
0
投票

这不仅仅涉及访问属性,首先您必须选择正确的元素。使用 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'];

0
投票

您可以将其视为

$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'];
© www.soinside.com 2019 - 2024. All rights reserved.