2017-04-03 33 views
-1

所以我有这个数组编码/获取单个结果从阵列

object(stdClass)#19 (2) { ["status"]=> string(7) "success" ["data"]=> object(stdClass)#14 (6) { ["network"]=> string(3) "BTC" ["txid"]=> string(64) "128830010b4773bb9a88f9c53b67217f37caa092bfd477a81a2f41d6ea804e53" ["amount_withdrawn"]=> string(10) "0.00087298" ["amount_sent"]=> string(10) "0.00050000" ["network_fee"]=> string(10) "0.00037298" ["blockio_fee"]=> string(10) "0.00000000" } } 

但我不知道如何让单个数据如TxID添加,林不知道其是否JSON或..

回答

0

这是如何:

$myarray = (array) $my_var ; // what u have is a class and not an array, just cast it 

echo $myarray["data"]["txid"];