0

我有以下代码要读入 XML 文件:

$xml2 = simplexml_load_file('http://www.facebook.com/feeds/page.php?format=rss20&id=334704593230758'); 
$item = $xml2->channel->item;

我在源代码中得到以下内容:

<b>Warning</b>:  simplexml_load_file() [<a href='function.simplexml-load-file'>function.simplexml-load-file</a>]: http://www.facebook.com/feeds/page.php?format=rss20&amp;id=334704593230758:11: parser error : xmlParseEntityRef: no name in <b>/home/content/49/8644249/html/test/_inc/footer.php</b> on line <b>110</b><br />


它继续这样持续了 10 多行。xml代码有问题吗?

4

1 回答 1

2

好吧,有点奇怪,因为这是一个 RSS 提要,并不是设计为直接人类可读的,答案是你必须User-Agent:在你的请求中包含一个标题。

当我在 Chrome 中加载 URL 时获取有效的 XML 文档,当我运行您的代码时,我会遇到与您相同的错误。经过仔细检查,我发现当我运行你的代码时,我实际上得到了一个最小的 HTML 文档,而不是所需的 XML——为了得到正确的结果,你必须传递一个有效的用户代理字符串,这意味着你不能使用simplexml_load_file(),因为它不支持流上下文。

这段代码对我有用:

// User-Agent string from Chrome. I haven't tested anything else so I don't know
// what is actually required, but this works.
$context = stream_context_create(array(
  'http'=>array(
    'user_agent' => 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11'
   )
));

// Get data as a string
$xml2 = file_get_contents('http://www.facebook.com/feeds/page.php?format=rss20&id=334704593230758', FALSE, $context);

// Convert string to a SimpleXML object
$xml2 = simplexml_load_string($xml2);

$item = $xml2->channel->item;
于 2012-07-23T22:02:40.577 回答