PHP转换文件编码,在开发中传递中文参数时,有时不知道是什么编码,结果造成了乱码的现象。
以下代码,可以自动识别编码并转换为UTF-8。
-
function characet($data){
-
if( !empty($data) ){
-
$fileType = mb_detect_encoding($data , array('UTF-8','GBK','LATIN1','BIG5')) ;
-
if( $fileType != 'UTF-8'){
-
$data = mb_convert_encoding($data ,'utf-8' , $fileType);
-
}
-
} //
-
return $data;
-
}
阅读(1424) | 评论(0) | 转发(0) |