我已經做了一次,但不能爲我的生活弄清楚我是如何做到的。我認爲它花了大約5行代碼。如何從外部頁面獲取數組php
我只想把這個URL輸出的數組:http://ridetimes.co.uk/queue-times.php然後我想遍歷數組並輸出每個字段。
我已經做了一次,但不能爲我的生活弄清楚我是如何做到的。我認爲它花了大約5行代碼。如何從外部頁面獲取數組php
我只想把這個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>
這是1,填充它,你會得到更多的支付:-) – 2013-07-11 22:01:25
@Dagon這使得它,如果你數的HTML :) – Orangepill
這就是我以後!乾杯! – K20GH
使用json_decode()http://php.net/manual/en/function.json-decode.php
這應該幫助你,我會覺得
您可以使用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);
}
這是json格式。使用json_decode將此格式轉換爲php數組。 – 2013-07-11 22:01:27