2012-04-05 46 views
0

這是從去年FM XML響應:獲得來自last.fm XML(API artist.getinfo)大藝術家圖像

<lfm status="ok"> 
    <artist> 
     <name>Adele</name> 
     <mbid>1de93a63-3a9f-443a-ba8a-a43b5fe0121e</mbid> 
     <url>http://www.last.fm/music/Adele</url> 
     <image size="small">http://userserve-ak.last.fm/serve/34/71796928.png</image> 
     <image size="medium">http://userserve-ak.last.fm/serve/64/71796928.png</image> 
     <image size="large">http://userserve-ak.last.fm/serve/126/71796928.png</image> 
     <image size="extralarge">http://userserve-ak.last.fm/serve/252/71796928.png</image> 
     <image size="mega">http://userserve-ak.last.fm/serve/_/71796928/Adele+PNG.png</image> 
     ... 

我想呼應的是大的圖像,但它不返回任何東西...

<?php 
    $xml = simplexml_load_file("http://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist=ARTISTNAME&api_key=b25b959554ed76058ac220b7b2e0a026"); 

    $largeimg = $xml->artist->image['large']; 
    echo '<img src="'.$largeimg.'" />';  
?> 

如果我只是把$ largeimg = $ xml-> artist-> image;它只是抓住第一張圖片(小圖片)。任何想法如何我可以解決這個問題?

回答

1

使用PHP's children() function得到藝術家節點的孩子:

$artistTag= $xml->artist->children(); 
$largeImage = $artistTag[5]; // 5 is the index of the Large Image child 
相關問題