Exemplo n.º 1
0
function css_process_escapes_callback($matches)
{
    if ($matches[2] == ' ') {
        return hex_to_utf8($matches[1]);
    } else {
        return hex_to_utf8($matches[1]) . $matches[2];
    }
}
Exemplo n.º 2
0
function css_process_escapes_callback($matches)
{
    return hex_to_utf8($matches[1]);
}