我怎么能用php读出mtgox自动收录器api中的一个特定值

时间:2013-04-24 20:49:39

标签: php arrays api

使用:     https://github.com/1360/mtgox-api-v1-php-class/blob/master/mtGox.class.php

+

echo '<pre>' . print_r($gox->getTicker(),true) . '</pre>';

我获得了mtgox-api的所有股票信息。

- &GT;我怎么能只读出一个值,例如最后购买的价格:

[buy][value_int]

= 11350000

? THX

1 个答案:

答案 0 :(得分:0)

假设$gox->getTicker()返回一个数组,你可以像这样引用数组元素:

$response = $gox->getTicker();
echo $response['buy']['value_int'];