标签:
今天说说编码乱码问题,当一个页面存在两种编码的时候,无论你乍么选择都会出现乱码,解决方法:
1.你据在网页编码是哪个。
2.首先判断字符串编码是否为utf8代码如下:
PHP代码
function is_utf8($word)
{
if (preg_match("/^([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}$/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){2,}/",$word) == true)
{
return true;
}
else
{
return false;
}
}
3.再转换为gb2312,用到转换函数iconv;
PHP代码
if(is_utf8($tit)==1)
$tit = iconv("utf-8","gbk",$tit);
五月份投资者们做点什么【带鱼投资理财】:http://licai.daiyuline.com/caijingxinwen/335.html
5月开盘大吉 沪指上涨1.85%【证券投资】:http://licai.daiyuline.com/zhengquan/334.html
标签:
原文地址:http://www.cnblogs.com/wenku/p/5455570.html