Does anyone here know of a more efficient way of doing this with php?
Thanks!
Code: Select all
<?php
$info2= "https://blockchain.info/charts/n-transactions-total?format=json";
$data2 = json_decode(file_get_contents($info2), true);
echo serialize($data2['values'][365]['y']);
?>