PHP小技巧之UNICODE编码转中文汉字

PHP的方式为:

function decodeUnicode($str)
{
    return preg_replace_callback('/\\\\u([0-9a-f]{4})/i',
        create_function(
            '$matches',
            'return mb_convert_encoding(pack("H*", $matches[1]), "UTF-8", "UCS-2BE");'
        ),
        $str);
}

JS的方式为:

小小记录下。。。

你可能感兴趣的:(原创,PHP&MySQL小技巧记录,PHP,UNICODE编码,转中文汉字)