为大家介绍php判断字符编码的二个方法,一个是用php自带的函数mb_detect_encoding,一个是自己写函数来处理。有需要的朋友,快来看看吧。
方法1,使用mb_detect_encoding函数。 <?php $str=”程序员之家,欢迎大家的光临。”; echo mb_detect_encoding($str); ?> Copier après la connexion 方法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; } ?> Copier après la connexion 如何取舍呢?聪明的,你来定夺吧,哈~~~ |