SimplePie XML 文档无效
我正在尝试使用 SimplePie 解析 XML。如果我没有将 setforce_feed 设置为 TRUE,SimplePie 甚至不会将其识别为 RSS。 SimplePie 显示的错误消息:
此 XML 文档可能无效 由于无效字符。 XML 错误: 格式不正确(无效令牌)位于 第 1 行,第 1 列
XML 文档的前 2 行是:
<?xml version="1.0" encoding="ISO-8859-1"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
知道这里出了什么问题吗?
编辑(用代码更新):
$feed_stomp = new SimplePie();
$feed_stomp->set_feed_url('http://singaporeseen.stomp.com.sg/site/servlet/rss?view=rss&vertical=contentbean%3a3552');
$feed_stomp->force_feed(true);
$feed_stomp->init();
$feed_stomp->handle_content_type();
echo $feed_stomp->error();
I am trying to parse a XML using SimplePie. SimplePie wouldn't even recognize this as RSS if I didn't turn set force_feed to TRUE.
The error message shown by SimplePie:
This XML document is invalid, likely
due to invalid characters. XML error:
Not well-formed (invalid token) at
line 1, column 1
The first 2 lines of the XML document is :
<?xml version="1.0" encoding="ISO-8859-1"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
Any idea what goes wrong here?
Edit ( update with code ):
$feed_stomp = new SimplePie();
$feed_stomp->set_feed_url('http://singaporeseen.stomp.com.sg/site/servlet/rss?view=rss&vertical=contentbean%3a3552');
$feed_stomp->force_feed(true);
$feed_stomp->init();
$feed_stomp->handle_content_type();
echo $feed_stomp->error();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能在字符串中留下了 BOM。
请向我们展示您的代码。
You probably left a BOM in the string.
Please show us your code.