如果已经尝试了一段时间,但我没有设法将JSON数据放入表中。可能是因为我没有正确理解JSON。
我想请一点帮助:)
<?php
$json_string = file_get_contents("https://api.cryptonator.com/api/full/btc-usd");
$array = json_decode($json_string, true);
?>
以上是第一部分
<table border="1" cellpadding="10">
<thead><tr><th>Timestamp</th></tr></thead>
<tbody>
<?php foreach($array[0]['markets'] as $key => $value): ?>
<tr>
<td><?php echo $value['market']; ?></td>
<td><?php echo $value['price']; ?></td>
<td><?php echo $value['volume']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
以上是第二部分
我想在表格中填入价值市场,价格,价值,如上表所示
我做错了什么?
谢谢!