Heim  >  Artikel  >  Backend-Entwicklung  >  php判断字符编码的二个方法

php判断字符编码的二个方法

WBOY
WBOYOriginal
2016-07-25 09:00:191080Durchsuche
为大家介绍php判断字符编码的二个方法,一个是用php自带的函数mb_detect_encoding,一个是自己写函数来处理。有需要的朋友,快来看看吧。

方法1,使用mb_detect_encoding函数。

<?php
$str=”程序员之家,欢迎大家的光临。”;
echo mb_detect_encoding($str);
?>

方法2,自定义函数。

<?php
function chkbm($string){
    $bm = array(‘ASCII’, ‘GBK’, ‘UTF-8′);
    foreach($bm as $c){
        if( $string === iconv(‘UTF-8′, $c, iconv($c, ‘UTF-8′, $string))){//转换编码后是不是相等
            return $c;
        }
    }
    return null;
}
?>

如何取舍呢?聪明的,你来定夺吧,哈~~~



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn