我想知道是否有任何方法可以简化这一点。它基本上将 JSON API 解码为数组,然后将每个value对象从对象添加到$utxos数组。如果可能,这就是我实际拥有并希望简化的内容:$utxos = array();$unspent = json_decode(file_get_contents("https://blockchain.info/unspent?active=1LaiteuxHEH4GsMC9aVmnwgUEZyrG6BiTH"), true)["unspent_outputs"];foreach ($unspent as $utxo) array_push($utxos, $utxo["value"]);
1 回答
心有法竹
TA贡献1866条经验 获得超5个赞
这就是我想出的:
$unspent = json_decode(file_get_contents("https://blockchain.info/unspent?active=1LaiteuxHEH4GsMC9aVmnwgUEZyrG6BiTH"), true)["unspent_outputs"]; $utxos = array_column($unspent, "value")
- 1 回答
- 0 关注
- 140 浏览
添加回答
举报
0/150
提交
取消