dedecms注册中文会员无法打开空间的解决方法_dedecms教程-查字典教程网
dedecms注册中文会员无法打开空间的解决方法
dedecms注册中文会员无法打开空间的解决方法
发布时间:2016-12-26 来源:查字典编辑
摘要:其实说到底还是个字符编码转换问题。因为汉字没有在判断uid值时出现了错误,导致系统无法识别用户,所以发生了“你访问的用户可能已经...

其实说到底还是个字符编码转换问题。

因为汉字没有在判断uid值时出现了错误,导致系统无法识别用户,所以发生了“你访问的用户可能已经被删除!”错误

方法是

在“memberconfig.php”文件的最后,PHP结束之前添加 isUTF8($str)函数

function isUTF8($str){

$length=strlen($str);

for($i=0;$i<$length;$i++){

$high=ord($str{$i});

if(($high==0xC0)||($high==0xC1)){

return false;

}elseif($high<0x80){

continue;

}elseif($high<0xC0){

return false;

}elseif($high<0xE0){

if(++$i>=$length)

return true;

elseif(($str{$i}&"xC0")=="x80")

continue;

}elseif($high<0xF0){

if(++$i>=$length){

return true;

}elseif(($str{$i}&"xC0")=="x80"){

if(++$i>=$length)

return true;

elseif(($str{$i}&"xC0")=="x80")

continue;

}

}elseif($high<0xF5){

if(++$i>=$length){

return true;

}elseif(($str{$i}&"xC0")=="x80"){

if(++$i>=$length){

return true;

}elseif(($str{$i}&"xC0")=="x80"){

if(++$i>=$length)

return true;

elseif(($str{$i}&"xC0")=="x80")

continue;

}

}

}

return false;

}

return true;

}

然后修改“memberindex.php”中的代码:将

$tmpstr = @gb2utf8($uid);

$tmpstr2 = @utf82gb($tmpstr);

if($tmpstr2==$uid) $uid = $tmpstr;

修改为

if(!isUTF8($uid)) $uid = @gb2utf8($uid);

问题解决。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新dedecms学习
    热门dedecms学习
    CMS教程子分类