Home >Backend Development >PHP Tutorial >PHP determines what encoding the variable content is (gbk? utf-8) mb_detect_encoding
mb_detect_encoding($str,"UTF-8, ISO-8859-1, GBK"); Get the encoding typefunction 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; } }Copy code |