I know this is probably quite simple but i just can't seem to crack it.
I do: $xml = new SimpleXMLElement($response);
Then: print_r($xml);
And i get the following:
SimpleXMLElement Object
( [@attributes] => Array
( [version] => x.x [merchantCode] => xxxxxxxx)
[reply] => SimpleXMLElement Object
( [orderStatus] => SimpleXMLElement Object
( [@attributes] => Array
( [orderCode] => xxxxxxxxx )
[reference] => https:xxxx
)
)
)
All i need is the value in reference, but what i'm returned doesn't seem to be navigable.
Am i just being simple, or is there a problem with the return object?
Thanks!