当前位置:Gxlcms > PHP教程 > php函数:判断字符编码的简单方法_PHP教程

php函数:判断字符编码的简单方法_PHP教程

时间:2021-07-01 10:21:17 帮助过:4人阅读

  1. function chkbm($string){
  2. $bm = array(ASCII, GBK, UTF-8);
  3. foreach($bm as $c){
  4. if( $string === iconv(UTF-8, $c, iconv($c, UTF-8, $string))){//转换编码后是不是相等
  5. return $c;
  6. }
  7. }
  8. return null;
  9. }
  10. ?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486172.htmlTechArticle?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))){//转换编码后是不是相等 retu...

人气教程排行