加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php 用户登录专用类示例

发布时间:2020-05-30 21:25:25 所属栏目:PHP 来源:互联网
导读:php 用户登录专用类示例

这是一个用于登录的php类,包含了数据库调用,写入cookie,感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编来看看吧。
经测试代码如下:


/**
 * 用于登录的php类:数据库调用,写入cookie
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
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);
   $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),$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,1);
   if(md5($db_password . $this->salt) == $password)
   {
    $this->user_id = mysql_result($db->result,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",$this->domain);
 }
 
}


/***   代码来自脚本之家 jb51.cc(jb51.cc)   ***/

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读