我剛剛開始學習PHP/JSON,並且我已經研究過如何從json文件輸出數組。我的目標是輸出<li>'
s中的所有專輯標題(在這種情況下,它們在json文件中被稱爲collectionName)。我想我可能會以錯誤的方式去做。PHP/JSON Array - 從iTunes
$artistId = '644708';
$otherAlbumsURL = 'http://itunes.apple.com/lookup?id='. $artistId .'&entity=album';
$a = (array)json_decode(file_get_contents($otherAlbumsURL));
var_dump($a);
如果你想讓json_decode返回一個數組,請將第二個參數傳遞爲true。 http://br.php.net/json-decode – rray