欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php怎么把字符编码转utf8

程序员文章站 2022-03-22 22:51:09
...
php怎么把字符编码转utf8

php把字符编码转utf8的方法:

function strToUtf8($str){
    $encode = mb_detect_encoding($str, array("ASCII",'UTF-8',"GB2312","GBK",'BIG5'));
    if($encode == 'UTF-8'){
        return $str;
    }else{
        return mb_convert_encoding($str, 'UTF-8', $encode);
    }
}

//mb_convert_encoding('要转编码的字符串','目标编码','原编码')
//mb_detect_encoding('字符串'):
mb_convert_encoding($str,'utf-8',mb_detect_encoding($str))

推荐教程: 《php教程

以上就是php怎么把字符编码转utf8的详细内容,更多请关注其它相关文章!

相关标签: php