标签: php blockchain
如何在PHP中获取特定BTC地址的事务(时间/日期,tx,金额)? 我通过这种方式获得了平衡,但无法找到获得交易的方法。
<?php function getBalance($address) { return file_get_contents('https://blockchain.info/de/q/addressbalance/'. $address); } echo 'Balance: ' . getBalance('xxxxxxxxxxxxxxx');