1

所以我一直在尝试从 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 内部服务器错误,它仍然会获取数据)

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

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

4

1 回答 1

5

simlexml_load_file 在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);

?>
于 2012-10-14T10:25:32.263 回答