2013-07-11 49 views

回答

4

你可以嘗試

$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

這是1,填充它,你會得到更多的支付:-) – 2013-07-11 22:01:25

+0

@Dagon這使得它,如果你數的HTML :) – Orangepill

+0

這就是我以後!乾杯! – K20GH

0

您可以使用file_get_contentsforeach循環和var_dump打印內容:

$data= json_decode(file_get_contents("http://ridetimes.co.uk/queue-times.php"), true); 
foreach ($data as $row) { 
    var_dump($row); 
}