当前位置:Gxlcms > PHP教程 > php如何转换字符编码为utf8

php如何转换字符编码为utf8

时间:2021-07-01 10:21:17 帮助过:40人阅读

php转换字符编码为utf8的方法:首先利用mb_detect_encoding()函数找出字符串本身的编码;然后利用mb_convert_encoding()函数进行编码转换即可。

mb_convert_encoding()函数语法:

(推荐教程:php图文教程)

mb_convert_encoding( $str, $encoding1,$encoding2 );

参数:

  • $str,要转换编码的字符串

  • $encoding1,目标编码,如utf-8,gbk,大小写均可

  • $encoding2,原编码,如utf-8,gbk,大小写均可

(视频教程推荐:php视频教程)

思路:

先找出字符串本身的编码,再转换为utf-8编码。

代码实现:

function str_to_utf8 ($str = '') {
    $current_encode = mb_detect_encoding($str, array("ASCII","GB2312","GBK",'BIG5','UTF-8')); 
    $encoded_str = mb_convert_encoding($str, 'UTF-8', $current_encode);
    return $encoded_str;
}

以上就是php如何转换字符编码为utf8的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行