vote up 4 vote down star

Hi,

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?

flag

What's wrong with loadHTML()? As far as I understand, it is made for situations like that. – Pekka Gaiser Nov 6 at 12:44
What do you mean with "continue from there"? – philfreo Nov 8 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 at 4:14

3 Answers

vote up 0 vote down check

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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