soap array conversion to php array
Moderators: egami, macek, gesf
you will need SOAP client to call SOAP web service, check nusoap php library to do the same
$element = new SimpleXMLElement( $xmlsoapstr );
$singleElement = $element->Body->searchResponse->return->item;
$new_array = array(
$singleElement->airlineCode,
$single->Flight Number);
something like this - I did not test the above code but it is possible...
$singleElement = $element->Body->searchResponse->return->item;
$new_array = array(
$singleElement->airlineCode,
$single->Flight Number);
something like this - I did not test the above code but it is possible...