PHP中GBK和UTF8编码处理
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-24
sp; } if(($count-$start_byte)>=$length) { $end_position = $i; break; } $value = ord($str[$i]); if($value > 127){ $count++; if($value >= 192 && $value <= 223) $i++; elseif($value >= 224 && $value <= 239) $i = $i + 2; elseif($value >= 240 && $value <= 247) $i = $i + 3; else die(''Not a UTF-8 compatible string''); } $count++; } return(substr($str,$start_position,$end_position-$start_position)); } //字符串长度统计-UTF8 [中文3个字节,俄文、韩文占2个字节,字母占1个字节] (Ruby) def utf8_string_length(str) temp = CGI::unescape(str) i = 0; j = 0; temp.length.times{|t| if temp[t] < 127 i += 1 elseif temp[t] >= 127 and temp[t] < 224 j += 1 if 0 == (j % 2) i += 2 j = 0 end else j += 1 if 0 == (j % 3) i +=2 j = 0 end end } return i } //判断是否是含有韩文-UTF-8 (javascript) function checkKoreaChar(str) { for(i=0; i<str.length; i++) { if(((str.charCodeAt(i) > 0x3130 && str.charCodeAt(i) < 0x318F) || (str.charCodeAt(i) >= 0 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: PHP5中数组函数总结篇下一篇: PHP中extract()函数的妙用
关于PHP中GBK和UTF8编码处理的所有评论