PHP 判断字符的编码 并输出想要的编码格式字符 (转)

  1. /**
  2. * 判断字符编码  并输出想要的编码
  3. * Enter description here ...
  4. * @param unknown_type $string
  5. * @param unknown_type $outEncoding
  6. */ 
  7. function safeEncoding($string,$outEncoding ='UTF-8') { 
  8.         $encoding = "UTF-8"; 
  9.         for($i=0;$i<strlen($string);$i++){ 
  10.             if(ord($string{$i})<128) 
  11.             continue; 
  12.             if((ord($string{$i})&224)==224){ 
  13.                 //第一个字节判断通过 
  14.                 $char = $string{++$i}; 
  15.                 if((ord($char)&128)==128){ 
  16.                     //第二个字节判断通过 
  17.                     $char = $string{++$i}; 
  18.                     if((ord($char)&128)==128) 
  19.                     { 
  20.                         $encoding = "UTF-8"; 
  21.                         break; 
  22.                     } 
  23.                 } 
  24.             } 
  25.             if((ord($string{$i})&192)==192){ 
  26.                 //第一个字节判断通过 
  27.                 $char = $string{++$i}; 
  28.                 if((ord($char)&128)==128){ 
  29.                     // 第二个字节判断通过 
  30.                     $encoding = "GB2312"; 
  31.                     break; 
  32.                 } 
  33.             } 
  34.         } 
  35.           
  36.         if(strtoupper($encoding) == strtoupper($outEncoding)) 
  37.         return $string; 
  38.         else 
  39.         return iconv($encoding,$outEncoding,$string); 
  40.     } 
  41. http://blog.csdn.net/yw5201314/article/details/8665099

posted on 2016-03-30 14:28  xihong  阅读(1075)  评论(0编辑  收藏  举报

导航