After Json Decode how do I access the 'final_balance' value ?
Array
(
[19BCZwWvYVh5yRLgdT6Yicnou8iYy7TUaS] => Array
(
[final_balance] => 154014
[n_tx] => 1
[total_received] => 154014
)
)
Ive tried this
$json1a = json_decode(file_get_contents($url1a), true);
$balance1 = $json1a[0]['final_balance'];
echo $balance1;
but no go, thanks