SimpleXMLElement 和编码问题
我通过以下方式将 RSS (XML) 文档加载到 SimpleXmlElement 中:
$x = new SimpleXmlElement($content);
我还进行了测试:
$x = simplexml_load_string($content);
当我打印出 $content 时,编码是正确的,但是当我将其加载到 SimpleXmlElement 中并打印出来时,我得到类似的结果; “vère”而不是“være”。
知道如何解决这个问题吗?
另外,额外的问题是,SimpleXmlElement 看起来很慢,有什么方法可以加快速度吗?
[编辑]
RSS 来源:http://www. vg.no/rss/nyfront.php?frontId=1
看来这是我的瓶颈(foreach 运行在我所有的 RSS 新闻条目中)。
I load a RSS (XML) document into an SimpleXmlElement the following way:
$x = new SimpleXmlElement($content);
I'we also tested with:
$x = simplexml_load_string($content);
When I print out the $content the encoding is correct but when I load it into an SimpleXmlElement and print it out, I get things like; 'være' instead of 'være'.
Any idea how to fix this?
Also, extra question, the SimpleXmlElement seems slow, any way to speed it up?
[Edit]
RSS source: http://www.vg.no/rss/nyfront.php?frontId=1
And it seems that it was something else that was my bottle neck (the foreach running trough all of my RSS news entries).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了。需要使用utf8_decode()。
参考: http://lists.motion-twin.com/pipermail /phptal/2005-3月/000316.html
Found it. Need to use utf8_decode().
Refrence: http://lists.motion-twin.com/pipermail/phptal/2005-March/000316.html