您好!您知道不知道PHP怎么把整站从GB2312转换成UTF-8?谢谢。
3个回答
2013-09-18
展开全部
这个问题让人很无语。如果你用的是down的cms那就再下载个不同编码的。如果可以要转换。我这里有个函数。可以成功解决你的问题。希望你会使用。function gb2unicode($gb)
{
if(!trim($gb))
return $gb;
$tmp=file($filename);
$codetable=array();
$filename="gb2312.txt"; while(list($key,$value)=each($tmp))
$codetable[hexdec(substr($value,0,6))]=substr($value,9,4);
$utf="";
while($gb)
{
if (ord(substr($gb,0,1))>127)
{
$this=substr($gb,0,2);
$gb=substr($gb,2,strlen($gb));
$utf.="".$codetable[hexdec(bin2hex($this))-0x8080].";";
}
else
{
$gb=substr($gb,1,strlen($gb));
$utf.=substr($gb,0,1);
}
}
return $utf;
}
?>希望对你有所帮助!
{
if(!trim($gb))
return $gb;
$tmp=file($filename);
$codetable=array();
$filename="gb2312.txt"; while(list($key,$value)=each($tmp))
$codetable[hexdec(substr($value,0,6))]=substr($value,9,4);
$utf="";
while($gb)
{
if (ord(substr($gb,0,1))>127)
{
$this=substr($gb,0,2);
$gb=substr($gb,2,strlen($gb));
$utf.="".$codetable[hexdec(bin2hex($this))-0x8080].";";
}
else
{
$gb=substr($gb,1,strlen($gb));
$utf.=substr($gb,0,1);
}
}
return $utf;
}
?>希望对你有所帮助!
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
2013-09-18
展开全部
我来告诉你,你先把分给我,告诉你一个非常简单的方法,直接就是重新做一遍
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-18
展开全部
修改apache 配置 或者用 .htaccess 文件重写配置
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询