コード例 #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];
    }
}
コード例 #2
0
function css_process_escapes_callback($matches)
{
    return hex_to_utf8($matches[1]);
}