我在一个 24 小时的黑客马拉松上试图解决这个问题,如果有点仓促,请原谅。
每个循环的第一个工作正常,我从这个 url 得到一个类别列表
https://dev.xola.com/api/categories
我用这个抓住清单
$fullurl = "https://dev.xola.com/api/categories";
$string .= file_get_contents($fullurl); // get json content
$json_a = json_decode($string, true); //json decoder
然后用这个循环它
<?
foreach($json_a as $v)
{?>
echo $v ?}>
现在每个外观的第二个,我想从这个 url 中获取项目
https://dev.xola.com/api/experiences
与上一个 url 中的类别匹配
so samething
$fullurl = "https://dev.xola.com/api/categories";
$string .= file_get_contents($fullurl); // get json content
$json_b = json_decode($string, true); //json decoder
这是我尝试过的完整循环
<?
$i=0;
foreach($json_a as $v)
$i++ {?> 回声 $v ?
foreach($json_b as $x){?>
if($v==$x):
echo $v
endif;
?>
}?>