使用PHP5读取XML文件

时间:2012-10-14 10:00:52

标签: php xml simplexml

所以我一直试图从PlaystationNetwork API获取一些数据,

http://www.psnapi.com.ar/ps3/api/psn.asmx/getPSNID?sPSNID=jameslfc19

所以我一直在使用这段代码

<?php
//Get Username
$username = $_GET["u"];

// Passing the XML
$psnxml = @simplexml_load_file('http://psnapi.com.ar/ps3/api/psn.asmx/getPSNID?sPSNID=' .$username);

$psnname = $psnxml->PSNId->Avatar;
echo $psnname;
?>

这绝对没有输出..

我正在使用@,否则我得到了(是的,我知道,但我认为即使XML文档有500个Internel服务器错误,它仍然会获取数据)

Warning: simplexml_load_file(http://psnapi.com.ar/ps3/api/psn.asmx/getPSNID?sPSNID=jameslfc19) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error in /Applications/XAMPP/xamppfiles/htdocs/Sigs/PSN2.php on line 6

最好的方法是什么?我假设用@忽略的错误导致了问题。

1 个答案:

答案 0 :(得分:5)

simlexml_load_file on php.net的评论中,我发现了以下内容。没有经过测试,但值得一试。

  

sean at aliencreations dot com 17-Mar-2011 10:59如果你找到了你   正在使用simplexml_load_file()接收500个错误但您可以访问   通过浏览器手动输入xml / rss,你的脚本可能就是   被用户代理嗅探器阻止。

     

在xml调用之前添加此代码以解决此问题

<?php

ini_set("user_agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
ini_set("max_execution_time", 0);
ini_set("memory_limit", "10000M");

$rss = simplexml_load_file($feed_url);

?>