0

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

+

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

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

-> 我怎样才能只读出一个值,例如最后购买的价格:

[buy][value_int]

= 11350000

? 谢谢

4

1 回答 1

0

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

$response = $gox->getTicker();
echo $response['buy']['value_int'];
于 2013-04-24T21:13:36.683 回答