Friday, 12 September 2014

How to read soapenv:Envelope xml node in php?



I am unable to read xml data. can any



<soapenv:Envelope xmlns:soapenv="http://ift.tt/sVJIaE">
<soapenv:Header/>
<soapenv:Body>
<addItemToShoppingCartResponse xmlns="http://ift.tt/1tH2kZN">
<ack>Warning</ack>
</addItemToShoppingCartResponse>
</soapenv:Body>
</soapenv:Envelope>


i am trying



$xml = new SimpleXMLElement($this->soapResponse);
print_r((string)$xml->addItemToShoppingCartResponse->ack );

No comments:

Post a Comment