我正在尝试通过PHP阅读ASP Web服务。 Web服务工作正常,它返回带有soap标头的XML。我尝试使用普通方式读取xml,用于在php中读取xml。但由于xml中有额外的soap标签,因此无法读取。
这是我的肥皂反应。 我需要使用PHP将这个XML放到数组中。
<?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>
<SayHelloResponse xmlns="http://tempuri.org/">
<SayHelloResult>
<Students xmlns="">
<St>
<name>Sanath</name>
<age>20</age>
</St>
<St>
<name>Mahela</name>
<age>21</age>
</St>
</Students>
</SayHelloResult>
</SayHelloResponse>
</soap:Body></soap:Envelope>