0
URL的輸出應該是json格式。我目前有:從URL抓取數據Php
<?php
$url = 'http://ffapi.fanfeedr.com/basic/api/leagues?api_key=thekeyvalue';
$content = file_get_contents($url);
$json = json_decode($content, true);
foreach($items as $item) {
print $item['id']."<br>".$item['name'];
}
它給我這個錯誤:
Invalid argument supplied for foreach()
我在做什麼錯?任何人都可以告訴我?
你不覺得你忘了告訴我們一個變量 ? – 2012-02-06 23:52:58
變量'$ items'在哪裏被聲明?! – 2012-02-06 23:54:17