php字符编码转utf-8格式

 <?
function is_utf8($other)
{
if (preg_match("/^([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}/",$other) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}$/",$other) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){2,}/",$other) == true)
{
return true;
}
else
{
return false;
} }
?> <?
if(is_utf8($other)==0)
{
$other = iconv("gb2312","UTF-8",$other);
}
?>
上一篇:视频聊天 Demo


下一篇:Velocity知识点总结