当前位置:首页 > PHP教程 > php函数 > 列表

php 检测是否为utf-8还是gb2312编码

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-10 15:01:13 浏览: 评论:0 

在php中检测字符串编码的方法有很多,最常用的就是直接使用mb_detect_encoding函数了,但还有更高级的办法就是使用字符的ascii值来判断.

例1代码如下:

  1. function is_utf8($str)  
  2. $c=0; $b=0; 
  3. $bits=0; 
  4. $len=strlen($str); 
  5. for($i=0; $i<$len$i++){ 
  6. $c=ord($str[$i]); 
  7. if($c > 128){ 
  8. if(($c >= 254)) return false; 
  9. elseif($c >= 252) $bits=6; 
  10. elseif($c >= 248) $bits=5; 
  11. elseif($c >= 240) $bits=4; 
  12. elseif($c >= 224) $bits=3; 
  13. elseif($c >= 192) $bits=2; 
  14. else return false; 
  15. if(($i+$bits) > $lenreturn false; 
  16. while($bits > 1){ 
  17. $i++; 
  18. $b=ord($str[$i]); 
  19. if($b < 128 || $b > 191) return false; 
  20. $bits--; 
  21. return true; 

1、方法1,代码如下:

  1. function mb_is_utf8($string)    
  2. {    
  3.     return mb_detect_encoding()($string'UTF-8') === 'UTF-8';//新发现    
  4. }  

2、方法2,代码如下:

  1. function preg_is_utf8($string)    
  2. {    
  3.     return preg_match('/^.*$/u'$string) > 0;//preg_match('/^./u', $string)    

Tags: php 检测 utf-8 gb2312

分享到: