欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-05 22:33:15
...
  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...