unicode 格式 转汉字

private 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);
}


上一篇:exclude和include当中/**和/*区别


下一篇:JAVA正则表达式