欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

discuz判断用户是否登录

程序员文章站 2022-05-07 11:22:14
...
discuz判断用户是否登录
function isLogin(){     //discuz判断用户是否登录,返回值为true表示用户已经登录
        if($auth = getglobal('auth', 'cookie')) {
                $auth = daddslashes(explode("\t", authcode($auth, 'DECODE')));
        }
        if(!empty($auth[0]) && !empty($auth[1])){return true;}
        return false;
}