我想请你帮忙我有一个xml源(http://livefmhits.6te.net/nowplay.xml)它给了我歌曲的来源,我想通过echo中的lastfm(artist.getinfo)删除封面我尝试如下:
<?php
$xml = simplexml_load_file('http://livefmhits.6te.net/nowplay.xml');
$artist = urlencode($xml->TRACK["ARTIST"]);
$url = 'http://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist='.$artist.&api_key=b25b959554ed76058ac220b7b2e0a026;
$xml2 = @simplexml_load_file($url);
if ($xml2 === false)
{
echo("Url failed"); // do whatever you want to do
}
else
{
if($xml2->track->album->image[3])
{
echo '<img src="';
echo((string) $xml2->track->album->image[3]);
echo '">';
}
else
{
echo "<img src='http://3.bp.blogspot.com/-SEsYAbASI68/VZ7xNuKy-GI/AAAAAAAAA3M/IWcGRDoXXms/s1600/capaindisponivel.png'"; // do whatever you want to do
}
}
我无法提取源必须是错误的回声,我喜欢删除说“mega”的图像。我告诉你完整的链接 http://ws.audioscrobbler.com/2.0/?method=artist.getinfo&lang=ru&artist=COLDPLAY&api_key=ae9dc375e16f12528b329b25a3cca3ee然而我要张贴你的帖子,但我不能(Get large artist image from last.fm xml (api artist.getinfo))
我从一开始就在这项工作中请求你的帮助,谢谢你的可用性
答案 0 :(得分:1)
以下是我在json中的表现。它在XML中几乎相同。
首先,我们定义API KEY:
define('YOUR_API_KEY', 'b25b959554ed76058ac220b7b2e0a026');
最好将它与代码分开,如果您需要在代码中的其他位置重用它,它会使事情变得更容易。 (例如,在另一个函数中)
然后,我们创建了让魔术发生所需的2个功能。
1)要查询Lastfm的API并获取其内容,我们将使用CURL:
function _curl($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
if(strtolower(parse_url($url, PHP_URL_SCHEME)) == 'https')
{
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,1);
curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,1);
}
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
2)Lastfm提供了许多选择。就个人而言,我发现将主要查询分成函数更容易。但是,当您只是定位图像时,这是我使用的功能:
function lfm_img($artist)
{
$url = "http://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist=$artist&api_key=".YOUR_API_KEY."&format=json";
$json = _cul($url);
$data = str_ireplace("#text", "text", $json);
$list = json_decode($data);
//If an error occurs...
if($list->error)
return 'ERROR.'. $list->error;
//That's where we get the photo. We try to get the biggest size first, if not we try smaller sizes. Returns '0' if nothing is found.
if($list->artist->image[4])
$img = $list->artist->image[4]->text;
else if($list->artist->image[3])
$img = $list->artist->image[3];
else if($list->artist->image[2])
$img = $list->artist->image[2];
else if($list->artist->image[1])
$img = $list->artist->image[1];
else if($list->artist->image[0])
$img = $list->artist->image[0];
else
$img = 0;
return $img;
}
最后,使用它们:
$artist_query = 'Nirvana';
$artist_image = lfm_img($artist);
//display image
echo '<img src="'. $artist_image .'" alt="'. $artist_query .'" />';
我认为这里的解释是自我解释的。 ;)
希望它有所帮助!