我需要查看每笔交易的所有地址、金额和确认信息——除了每个数组不同。如何从 litecoind 的响应中获取所有这些信息?
foreach($transactions as $transaction) {
echo '<br />' . $transactions[0]['address'];
echo '<br />' . $transactions[0]['amount'];
echo '<br />' . $transactions[0]['confirmations'];
}
以上是 PHP 代码,响应来自以下几行:
$transactions = $litecoin->listreceivedbyaddress();
var_dump($transactions);
array(2) { [0]=> array(5) { ["address"]=> string(34) "LPwNe6JtUgXxWrdK26UMKJJrDwYzEzkUZY" ["account"]=> string(0) "" ["amount"]=> float(1) ["confirmations"]=> int(4) ["txids"]=> array(1) { [0]=> string(64) "9da67825c00cf01c991e2fa913cc82c59d558b4c41d8f4e3dcb8f862b81affec" } } [1]=> array(5) { ["address"]=> string(34) "LTfP4riFBn6ctQ9jbGyWZ2HswmUZKgrJbX" ["account"]=> string(0) "" ["amount"]=> float(1) ["confirmations"]=> int(537) ["txids"]=> array(1) { [0]=> string(64) "b9806a0adc91ef70e67341f7d0cf6f2c7422fac35e54062153318d4416f44eaf" } } }
这是它返回的内容:
LPwNe6JtUgXxWrdK26UMKJJrDwYzEzkUZY
1
4
LPwNe6JtUgXxWrdK26UMKJJrDwYzEzkUZY
1
4
如您所见,它返回相同的东西,我怎样才能让它返回两个不同的交易?谢谢。