我正在尝试通过 enjin API 显示来自此 JSON 响应的所有用户名的列表,但我收到此错误:
警告:为 foreach() 提供的参数无效
代码
<?php
$s = curl_init();
curl_setopt($s, CURLOPT_URL, 'http://oceanix.enjin.com/api/get-users');
$output = curl_exec($s);
curl_close($s);
$decodedJson = json_decode($output);
?>
<table>
<tr>
<th>username</th>
</tr>
<?php
foreach ($decodedJson as $username) { ?>
<tr>
<td><?php echo $username->username; ?></td>
</tr>
<?php
}?>
</table>
任何帮助表示赞赏。谢谢