I run a forum designed to support an international mathematics group. I've recently switched it to unicode for better support of international characters. In debugging this conversion, I've discovered that not all unicode characters are considered as valid XHTML (the relevant website appears to be http://www.w3.org/TR/unicode-xml/). One of the steps that the forum software goes through before presenting the posts to the browser is an XHTML validation/sanitisation step. It seems a reasonable idea that at that stage it should remove any unicode characters that XHTML doesn't like.

So my question is:

Is there a standard (or best) way of doing this in PHP?

(The forum is written in PHP, by the way.)

I guess that the failsafe would be a simple str_replace (if that's also the best, do I need to do anything extra to make sure it works properly with unicode?) but that would involve me having to go through the XHTML DTD (or the above-referenced W3 page) carefully to figure out what characters to list in the search part of str_replace, so if this is the best way, has someone already done that so that I can steal, err, copy, it?

(Incidentally, the character that caused the problem was U+000C, the 'formfeed', which (according to the W3 page) is valid HTML but invalid XHTML!)

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

I found a function that might do what you want on phpedit.net.

I'll post the function for the archive, credits to ltp on PHPEdit.net:

/**
 * Removes invalid XML
 *
 * @access public
 * @param string $value
 * @return string
 */
function stripInvalidXml($value)
{
    $ret = "";
    $current;
    if (empty($value)) 
    {
        return $ret;
    }

    $length = strlen($value);
    for ($i=0; $i < $length; $i++)
    {
        $current = ord($value{$i});
        if (($current == 0x9) ||
            ($current == 0xA) ||
            ($current == 0xD) ||
            (($current >= 0x20) && ($current <= 0xD7FF)) ||
            (($current >= 0xE000) && ($current <= 0xFFFD)) ||
            (($current >= 0x10000) && ($current <= 0x10FFFF)))
        {
            $ret .= chr($current);
        }
        else
        {
            $ret .= " ";
        }
    }
    return $ret;
}
link|improve this answer
I would guess that this is fast than the preg_replace method (especially given the comment about speed at php.net/manual/en/regexp.reference.unicode.php), but suffers from the same drawback that I have to figure out my own whitelist! (See comment above about being lazy!) – Andrew Stacey Apr 13 '10 at 10:50
You don't have to figure out your own white-list. Characters are allowed based on ASCII code and they are replaced with a space when they fall outside of the range specified by the function. I'm pretty sure this is all you will need, the white-list is already in the function. – Bas Apr 13 '10 at 10:58
Certainly there is one whitelist in that function, but how do I know that it is the correct whitelist? For example, 0xC is allowed in HTML but not in XHTML. If I'm working from a whitelist, it ought to be generated somehow from the DTD. – Andrew Stacey Apr 13 '10 at 12:18
0xC is filtered in this function as are all other characters that are not allowed in XML documents. Why would you need to generate a white-list from the DTD? Just retrieve the posts from the DB, put them through this function and output them as XHTML. – Bas Apr 13 '10 at 12:55
I'd need to generate a white-list from the DTD because different DTDs allow different lists of entities. 0xC is allowed in HTML. – Andrew Stacey Apr 13 '10 at 13:51
show 5 more comments
feedback

Assuming your input is utf8, you can remove unicode ranges with something like

 preg_replace('~[\x{17A3}-\x{17D3}]~u', '', $input);

Another, and better, approach is to remove everything by default and only whitelist chars you want to see. Unicode properties (\p) are quite practical for this. For example, removes everything except (unicode) letters and numbers:

  preg_replace('~[^\p{L}\p{N}]~u', '', $input)
link|improve this answer
My problem with either of these approaches is that I have to go through the DTD to extract the whitelist or blacklist to match against. I was kinda hoping that someone had already done that for me! I don't suppose that there's a '\p{XHTML}' for all those characters that are valid XHTML, is there? (I'm a mathematician and we're fundamentally a lazy bunch - if someone else has already solved the problem then we don't want to bother doing it again!) – Andrew Stacey Apr 13 '10 at 9:34
i'm not aware of such a solution either, but if you're looking for quick and easy way, you can simply convert everything except letters-numbers-punctuation to numeric entities. – user187291 Apr 13 '10 at 10:23
Converting "everything-except" to entities doesn't work. If I send a character outside the valid set, even when encoded as an entity, the browser will complain. (I should perhaps make clear that I'm serving XHTML+MathML so it has to be 100% valid - I can't rely on the browser to ignore an invalid entity.) – Andrew Stacey Apr 13 '10 at 10:57
feedback

Your Answer

 
or
required, but never shown

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