Şu anda bir SOAP çağrısından bir dönüş var.
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
  <soapenv:Body>
    <ns:getMakeResponse xmlns:ns="http://ws.fds.com">
      <ns:return>
        <ResponseCode>000</ResponseCode>  
        <ResponseDescription>No Errors</ResponseDescription>
        <MakeReturn>
          <Make>JEEP</Make>
          <MakeDescription>JEEP</MakeDescription>
        </MakeReturn>
          <MakeReturn>
            <Make>CHRY</Make>
            <MakeDescription>CHRYSLER</MakeDescription>
          </MakeReturn>
      <ns:return>
    </ns:getMakeResponse>
  </soapenv:Body>
</soapenv:Envelope>
Nasıl bir aşağıdaki gibi bir dizi, ya da benzer bir şey içine bu açabilirsiniz?
Array
(
    [id] => 1
    [responsecode] => 000
    [responsedescription] => No Errors
    [0] => Array
        (
            [make] => JEEP
            [makedescription] => JEEP
        )
    [1] => Array
        (
            [make] => CHRY
            [makedescription] => CHRYSLER
        )
)
Sağlanan herhangi bir yardım için teşekkür ederiz!