php中有一个自动识别编码的函数mb_detect_encoding(),下面的代码是探测文章编码并自动转换成utf8的方法

//自动识别编码并自动转换成utf8
 /*
 爱推吧 http://ituibar.com
 */
 function characet($data){
 if(!empty($data)){
 $fileType=mb_detect_encoding($date,array('utf-8','GBK','LATIN1','BIG5'));
 if($fileType !='utf-8'){
 $data=mb_convert_encoding($data, 'utf-8',$fileType) ;
 }
 }
 return $date;
 }
Last modification:April 11th, 2020 at 09:18 pm
如果觉得我的文章对你有用,请随意赞赏