美文网首页
php 将各种编码 转在 utf8 的函数

php 将各种编码 转在 utf8 的函数

作者: IT行者q | 来源:发表于2019-03-23 11:05 被阅读0次
function characet($data){
    if( !empty($data) ){
        $fileType = mb_detect_encoding($data , array('ASCII','GBK','GB2312','UCS-2BE','UTF-8','LATIN1','BIG5')) ;
        if( $fileType != 'UTF-8'){
            $data = mb_convert_encoding($data ,'utf-8' , $fileType);
        }
    }
    return $data;
}

注:uft-8 要在 LATIN1前面

相关文章

网友评论

      本文标题:php 将各种编码 转在 utf8 的函数

      本文链接:https://www.haomeiwen.com/subject/jegjvqtx.html