SimpleXMLElement 和编码问题

发布于 2024-10-17 14:31:29 字数 573 浏览 1 评论 0原文

我通过以下方式将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文