gpt4 book ai didi

php - 为什么我使用json链接只得到3个返回值:

转载 作者:行者123 更新时间:2023-12-03 19:32:45 24 4
gpt4 key购买 nike

应该还有更多的返回值?

print_r($data);

表明还有更多内容需要显示。感谢您的任何提示,

斯特凡

<?php 
$data = json_decode(file_get_contents('https://bittrex.com/api/v1.1/public/getorderbook?market=BTC-DOGE&type=sell'),TRUE);
//print_r($data);
$ncount = COUNT( $data );
for($i=0;$i<$ncount;$i++){
echo $data['result'][$i]['Quantity'] .'<br />';
}
?>

最佳答案

$ncount 应该是 $data['result'];

count()

试试这个:

<?php 
$data = json_decode(file_get_contents('https://bittrex.com/api/v1.1/public/getorderbook?market=BTC-DOGE&type=sell'),TRUE);

$ncount = count($data['result']);
for($i=0;$i<$ncount;$i++){
echo $data['result'][$i]['Quantity'] .'<br />';
}
?>

关于php - 为什么我使用json链接只得到3个返回值:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48025571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com