$str = file_get_contents('http://fantasy.mlssoccer.com/web/api/elements/498/');
$jsonarray = json_decode($str,true);
$week1 = $jsonarray['fixture_history']['summary'][0][2];
$week2 = $jsonarray['fixture_history']['summary'][1][2];
这是摘录它的内容
{ "summary" :
[
[ 1,"PHI (A)",14 ]
[ 2,"TOR (A)",8 ]
]
}
目前仅存在2周.每周将添加1个新条目.我如何编写代码来说“循环存在多少周/条目”?
我想要做的就是将这些信息放入HTML表格中,我希望代码能够知道有多少周.每周将有1行数据.
如果不清楚,请告诉我..谢谢!
最佳答案
使用.length
原文链接:https://www.f2er.com/html/425936.html在Javascript中
jsonObj['summary'].length
在PHP中
echo count($jsonarray['fixture_history']['summary']);