当前位置:Gxlcms > PHP教程 > PHP判断变量内容是什么编码(gbk?utf-8)mb_detect_encoding

PHP判断变量内容是什么编码(gbk?utf-8)mb_detect_encoding

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

mb_detect_encoding($str,"UTF-8, ISO-8859-1, GBK"); 获取编码类型
function convToUtf8($str) {
    if( mb_detect_encoding($str,"UTF-8, ISO-8859-1, GBK")!="UTF-8" ) {//判断是否不是UTF-8编码,如果不是UTF-8编码,则转换为UTF-8编码
        return  iconv("gbk","utf-8",$str);
    } else {
        return $str;
    }
}

人气教程排行