我試圖在遠程服務器上打開一個XML文件,但遇到一個錯誤,表示已達到重定向限制。我無法控制遙控器,所以有什麼方法可以增加這個限制嗎?或者,我應該與擁有服務器的人交談,看看他們能做什麼?已達到SimpleXML重定向限制
這是錯誤:
Warning: simplexml_load_file(http://www.server.com/search/music.xml?key=key&type=songs&p1=All%20Things%20New&p2=Elevation%20Worship) [function.simplexml-load-file]: failed to open stream: Redirection limit reached, aborting in /home/admin/public_html/art/art.php on line 4
Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity " http://www.server.com/search/music.xml?key=key&type=songs&p1=All%20Things%20New&p2=Elevation%20Worship " in /home/admin/public_html/art/art.php on line 4
Fatal error: Call to a member function xpath() on a non-object in /home/admin/public_html/art/art.php on line 6
我的代碼是:
<?php
function errorHandler($n, $m, $f, $l) {
header('Location: blank.png');
}
set_error_handler('errorHandler');
$url = 'http://REMOTESERVER/search/music.xml?key=KEY&type=songs&p1=' . htmlspecialchars($_GET["track"]) . '&p2=' . htmlspecialchars($_GET["artist"]) . '';
$xml = simplexml_load_file($url);
$img = $xml->xpath('//image200');
$large = (string)$img[0];
header("Location:".urldecode($large));
?>
您從哪裏得到該錯誤?從連接或simplexml?您是否嘗試過在瀏覽器中訪問錯誤的網址?它顯示在那裏嗎?如果沒有,是的,問問主人:)。 – mvbrakel
我向問題添加了錯誤消息。 – austinhollis
此外,當我從遠程服務器複製XML文件並將其保存在我的,它的工作原理。 – austinhollis