PHP 登录类

全屏阅读
  • 基本信息
  • 作者:
  • 作者已发布:924篇文章
  • 发布时间:2020年04月06日 21:48:07
  • 所属分类:PHP+MySql
  • 阅读次数:2754次阅读
  • 标签:
class Auth
{
    var $user_id;
    var $username;
    var $password;
    var $ok;
    var $salt = "34asdf34";
    var $domain = ".domain.com";
 
    function Auth()
    {
        global $db;
 
        $this->user_id = 0;
        $this->username = "Guest";
        $this->ok = false;
 
        if(!$this->check_session()) $this->check_cookie();
 
        return $this->ok;
    }
 
    function check_session()
    {
        if(!empty($_SESSION['auth_username']) && !empty($_SESSION['auth_password']))
            return $this->check($_SESSION['auth_username'], $_SESSION['auth_password']);
        else
            return false;
    }
 
    function check_cookie()
    {
        if(!empty($_COOKIE['auth_username']) && !empty($_COOKIE['auth_password']))
            return $this->check($_COOKIE['auth_username'], $_COOKIE['auth_password']);
        else
            return false;
    }
 
    function login($username, $password)
    {
        global $db;
        $db->query("SELECT user_id FROM users WHERE username = '$username' AND password = '$password'");
        if(mysql_num_rows($db->result) == 1)
        {
            $this->user_id = mysql_result($db->result, 0, 0);
            $this->username = $username;
            $this->ok = true;
 
            $_SESSION['auth_username'] = $username;
            $_SESSION['auth_password'] = md5($password . $this->salt);
            setcookie("auth_username", $username, time()+60*60*24*30, "/", $this->domain);
            setcookie("auth_password", md5($password . $this->salt), time()+60*60*24*30, "/", $this->domain);
 
            return true;
        }
        return false;
    }        
 
    function check($username, $password)
    {
        global $db;
        $db->query("SELECT user_id, password FROM users WHERE username = '$username'");
        if(mysql_num_rows($db->result) == 1)
        {
            $db_password = mysql_result($db->result, 0, 1);
            if(md5($db_password . $this->salt) == $password)
            {
                $this->user_id = mysql_result($db->result, 0, 0);
                $this->username = $username;
                $this->ok = true;
                return true;
            }
        }            
        return false;
    }
 
    function logout()
    {
        $this->user_id = 0;
        $this->username = "Guest";
        $this->ok = false;
 
        $_SESSION['auth_username'] = "";
        $_SESSION['auth_password'] = "";
 
        setcookie("auth_username", "", time() - 3600, "/", $this->domain);
        setcookie("auth_password", "", time() - 3600, "/", $this->domain);
    }
 
}

顶一下
(0)
100%
订阅 回复
踩一下
(0)
100%
» 固定链接:恒富网 » 《PHP 登录类》
» 郑重声明:本文由mpxq168发布,所有内容仅代表个人观点。版权归恒富网mpxq168共有,欢迎转载, 但未经作者同意必须保留此段声明,并给出文章连接,否则保留追究法律责任的权利! 如果本文侵犯了您的权益,请留言。

目前有 0 条留言 其中:访客:0 条, 博主:0 条

给我留言

您必须 [ 登录 ] 才能发表留言!