私はすでにこれを一度やったことがありますが、どうやってやったのか一生わかりません。5行ほどのコードだったと思います。
この URL が出力する配列http://ridetimes.co.uk/queue-times.phpを取得したいだけで、配列をループして各フィールドを出力したいと思います。
私はすでにこれを一度やったことがありますが、どうやってやったのか一生わかりません。5行ほどのコードだったと思います。
この URL が出力する配列http://ridetimes.co.uk/queue-times.phpを取得したいだけで、配列をループして各フィールドを出力したいと思います。
あなたが試すことができます
$array = json_decode(file_get_contents("http://ridetimes.co.uk/queue-times.php"), true);
次に、部分から出力へ
<table>
<thead>
<tr><th><?= implode("</th><th>", array_map("htmlspecialchars",array_map("ucwords", array_keys($array[0])))) ?></th><tr>
</thead>
<tbody>
<?php foreach($array as $row): ?>
<tr><td><?= implode("</td><td>", array_map("htmlspecialchars", $row)) ?></td></tr>
<?php endforeach; ?>
</tbody>
</table>
Use json_decode() http://php.net/manual/en/function.json-decode.php
That should help you I would think
file_get_contents
とforeach
ループを使用しvar_dump
て、内容を印刷できます。
$data= json_decode(file_get_contents("http://ridetimes.co.uk/queue-times.php"), true);
foreach ($data as $row) {
var_dump($row);
}