我正试图从标签中提取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>
答案 0 :(得分: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'];
答案 1 :(得分: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'];