PHP中判断字串编码是GB还是UTF-8
function is_gb2312($str){
for($i=0; $i<strlen($str); $i++) {
$v = ord( $str[$i] );
if( $v > 127) {
if( ($v >= 228) && ($v <= 233) ){
if( ($i+2) >= (strlen($str) - 1)) return true;// not enough characters
$v1 = ord( $str[$i+1] );
$v2 = ord( $str[$i+2] );
if( ($v1 >= 128) && ($v1 <=191) && ($v2 >=128) && ($v2 <= 191) )
return false;//UTF-8编码
else
return true;//GB编码
}
}
}
}
来自:http://java221.iteye.com/blog/675258
PHP自带判断字符串编码函数--返回编码类型:
mb_detect_encoding($str);
博客已移至http://blog.aboutc.net/欢迎访问
页:
[1]