PHP 将Unicode中文编码转换成Utf8中文

以下方法可以将Unicode编码的中文转换成utf8编码的中文,且对原来就是utf8编码的中文没影响:
public static function decodeUnicode($str){
        return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', create_function('$matches', 'return iconv("UCS-2BE","UTF-8",pack("H*", $matches[1]));'), $str);
    }

你可能感兴趣的:(PHP 将Unicode中文编码转换成Utf8中文)