PHP从Blockcypher获取json的变量

时间:2017-11-15 17:50:37

标签: php json

示例:https://api.blockcypher.com/v1/btc/main/addrs/172tcvQ2TNn4gWJx8g3TsaqbWcyJuk7jNZ

大家好!

每次交易我都有一个新的BTC地址,我需要获得"花费的#34; (unconfirmed_txrefs - >在上面的例子中花费了)。所以我写了这段代码,我不知道它有什么问题(我不是程序员)。

与问题相关的部分代码:

<?php

include_once("JsonRPC2Client.php");

class Invoice {

public function update() {

    $address = $this->_data['btc_address']; //get the current btc address, works

    $contents = file_get_contents("https://api.blockcypher.com/v1/btc/main/addrs/$address");

    $sp = json_decode($contents);

    $sp->spent+0;

我希望$ sp为真或假。

0 个答案:

没有答案