up vote 4 down vote favorite
share [g+] share [fb]

How do you deal with broken data in XML files? For example, if I had

<text>Some &improper; text here.</text>

I'm trying to do:

 $doc = new DOMDocument();
 $doc->validateOnParse = false;
 $doc->formatOutput = false;
 $doc->load(...xml');

and it fails miserably, because there's an unknown entity. Note, I can't use CDATA due to the way the software is written. I'm writing a module which reads and writes XML, and sometimes the user inserts improper text.

I've noticed that DOMDocument->loadHTML() nicely encodes everything, but how could I continue from there?

link|improve this question

What's wrong with loadHTML()? As far as I understand, it is made for situations like that. – Pekka Nov 6 '09 at 12:44
What do you mean with "continue from there"? – philfreo Nov 8 '09 at 2:57
The software that actually generates the XML is seriously broken, and you should try to change that - or contact someone who can. – Martin Hohenberg Nov 9 '09 at 4:14
feedback

3 Answers

up vote 0 down vote accepted

Perhaps you can use preg_replace_callback to do the heavy lifting with entities for you:

http://php.net/manual/en/function.preg-replace-callback.php

function fixEntities($data) {
    switch(substr($data, 1, strlen($data) - 2)) {
        case 'amp':
        case 'lt':
        case 'gt':
        case 'quot': // etc., etc., etc.
            return $data;
    }
    return '';
}
$xml = preg_replace_callback('/&([a-zA-Z0-9#]*);{1}/', 'fixEntities', $xml);
link|improve this answer
feedback

Use htmlspecialchars to serialize special xml characters before pushing the input into your xml/xhtml dom. While its name is prefixed with "html", based on the only characters it replaces, it is truely useful for xml data serialization.

link|improve this answer
feedback

If you are the one who writes the xml, there should be no problem, as you can encode any user input into entities before putting it into xml.

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.