有没有办法简化这个 foreach 循环?

我想知道是否有任何方法可以简化这一点。


它基本上将 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"]);


HUH函数
浏览 141回答 1
1回答

心有法竹

这就是我想出的:$unspent = json_decode(file_get_contents("https://blockchain.info/unspent?active=1LaiteuxHEH4GsMC9aVmnwgUEZyrG6BiTH"), true)["unspent_outputs"]; $utxos = array_column($unspent, "value")感谢B. Fleming
打开App,查看更多内容
随时随地看视频慕课网APP