Hi guys how can I pull the amount value from the xml below?
<balance><amount value="1000" currencyCode="GBP" exponent="2" debitCreditIndicator="credit"/></balance>
I am currently using the following
$lastEvent = balance->amount->value;
Hi guys how can I pull the amount value from the xml below?
<balance><amount value="1000" currencyCode="GBP" exponent="2" debitCreditIndicator="credit"/></balance>
I am currently using the following
$lastEvent = balance->amount->value;
The formatted XML would look like:
<balance>
<amount value="1000" currencyCode="GBP" exponent="2" debitCreditIndicator="credit" />
</balance>
As you can see, value
is not a separate node, so you'll have to access it as below (assuming you're using SimpleXML to do the parsing):
$xml = simplexml_load_string($str); // $str contains your XML string
$lastEvent = $xml->amount['value'];