我想知道是否有任何方法可以简化这一点。
它基本上将 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"]);
心有法竹