我熟悉 SimpleXML,现在正在接收来自客户端的 SOAP 响应。我已经尝试通过使用 SimpleXML 阅读尽可能多的示例,但我就是无法让我的工作!有人可以给我看一行PHP,它在以下代码中读取DESCRIPTION节点:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetPoliciesResponse xmlns="http://www.abraxas-uk.com/Abraxas/InsuranceWebsite/InsWebService/">
<GetPoliciesResult>
<Policies xmlns="">
<Policy>
<Description>Off-Pad Warranty</Description>
<Plan />
</Policy>
</Policies>
</GetPoliciesResult>
</GetPoliciesResponse>
</soap:Body>
</soap:Envelope>
我正在拔头发!