vote up 0 vote down star

I have an xml file that is being used on a third party system, and I have no control over the third party system that is using the xml file.

The third party system fails because there are ascii in the xml file.

For example, it fails when it sees

,

when it wants a single quote ’

Is there a way to throw php code around the variables and decode the ascii into plain text?

flag

69% accept rate
3  
FYI, ascii is plain text (en.wikipedia.org/wiki/Ascii). You're asking how to decode xml entities (en.wikipedia.org/wiki/XML_entity). – Sean Nyman Aug 31 at 13:37

1 Answer

vote up 2 vote down check

You can run your strings through html_entity_decode().

link|flag

Your Answer

Get an OpenID
or

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