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).

link|improve this question

1  
What encoding are you doing the output in? And re slowness, are you 100% sure that is SimpleXML, and not the outgoing request? – Pekka Feb 17 '11 at 12:26
feedback

2 Answers

Is the document encoding listed correctly in the XML you are trying to load, along the lines of <?xml version="1.0" encoding="UTF-8"?>? You say it comes from an RSS feed, can you provide the URL so we can try to reproduce?

link|improve this answer
feedback
up vote 0 down vote accepted

Found it. Need to use utf8_decode().

Refrence: http://lists.motion-twin.com/pipermail/phptal/2005-March/000316.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.