Parse XML response from PHP CURL Parse XML response from PHP CURL curl curl

Parse XML response from PHP CURL


It looks like there are two problems with $xml->TwilioResponse->call.

  1. $xml contains the TwilioResponse element (the "document element"), $xml->TwilioResponse is incorrect.
  2. (XML and) SimpleXML element names are case-sensitive, call should be Call.

Give $xml->Call a spin.