2016-10-01 48 views
0

好,我問你的幫助在下面的問題,我有一個文件的PHP代碼,刪除estam一個XML文檔網站的最後一個FM,問題是隻有在沒有覆蓋以下消息時才擁有正確的代碼「致命錯誤:調用/home/vhosts/radiojevn.6te.net/lastfm-3中的非對象的成員函數xpath()第23行的.php「我試過修改代碼但沒有成功。調用一個非對象的成員函數xpath()

如果有人能夠幫助我,我很感激!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml"> 
 
<head> 
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
 
<title>Untitled Document</title> 
 
<style type="text/css"> 
 
<!-- 
 
body { 
 
\t background-image: url(http://www.playtech.com.br/Imagens/produtos/indisponivel_vitrine.gif); 
 
\t background-repeat: no-repeat; 
 
\t background-size: 100%; 
 

 
} 
 
--> 
 
</style> 
 
</head> 
 

 
<body marginheight="0" marginwidth="0"> 
 
<?php 
 
$xml = simplexml_load_file('http://radiojoven.6te.net/NowOnAir.xml'); 
 
if ($xml === false) 
 
    { 
 
     echo("Url failed"); // do whatever you want to do 
 
    } 
 
$artist = urlencode($xml->Event->Song->Artist['name']); 
 
$url = simplexml_load_file("http://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist=$artist&api_key=50ac27433c63f7298064f434f4ef6d15"); 
 
$largeImage = $url->xpath('/lfm/artist/image[@size="mega"]')[0]; 
 
echo '<img src="'.$largeImage.'" '; 
 
?>width="100%" height="100%" /> 
 
</html>

+0

好像使用simplexml_load_file失敗和$網址可能是假的,而不是一個目的。做一個'var_dump($ url);'確認,然後在這個網站上搜索「simplexml_load_file錯誤」以進一步調試... – rjdown

+0

@rjdown我會試着找出錯誤,只有當沒有封面它給了我錯誤,你看到這個文本,我只是想刪除它,謝謝你的答覆。 – Acruz

回答

0

您的要求是不是有效的XML文件http://radiojoven.6te.net/NowOnAir.xml 如果你只是想刪除錯誤使用

<?php 
$xml = @simplexml_load_file('http://radiojoven.6te.net/NowOnAir.xml'); 
if ($xml !== false) 
{ 
    $artist = urlencode($xml->Event->Song->Artist['name']); 
    $url = simplexml_load_file("http://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist=$artist&api_key=50ac27433c63f7298064f434f4ef6d15"); 
    $largeImage = $url->xpath('/lfm/artist/image[@size="mega"]')[0]; 
    echo '<img src="'.$largeImage.'" '; 
    ?>width="100%" height="100%" /><?php 
} 
?> 
+0

謝謝,這只是我們想要的! – Acruz

相關問題