class Login { static $username; //用户名 static $userpass; //密码 static $userid; //用户id static $authtable="account"; //验证用数据表 static $usecookie=true; //使用cookie保存sessionid static $cookiepath='/'; //cookie路径 static $cookietime=108000; //cookie有效时间 static $err_mysql="mysql error"; //mysql出错提示 static $err_username="用户名无效"; //用户名无效提示 static $err_user="用户无效"; //用户无效提示(被封禁) static $err_password="密码错误提示"; //密码错误提示 static $err; //出错提示 static $errorreport=false; //显示错误 public static function isLoggedin() //判断是否登录 { if(isset($_COOKIE['user_name'])) //如果cookie中保存有user_name { return true; } else //如果cookie中未保存user_name,则直接检查session { return false; } } public static function userAuth($username,$userpass) //用户认证 { self::$username=$username; self::$userpass=$userpass; $query="select * from `users` where `user_name`='".$username."'"; $result = db::get_one($query); $reset=array(); if($result['user_name']!="") //找到此用户 { if(md5($userpass)==$result['userpwd']) //密码匹配 { self::$userid=$result['uid']; setcookie('user_name',$result['user_name'],time()+self::$cookietime,self::$cookiepath); setcookie("usermore", 1, time()+self::$cookietime,self::$cookiepath); $reset['userlog']=true; return $reset; } else //密码不匹配 { $reset['userlog']=false; $reset['usererr']=self::$err_password; return $reset; } } else //没有找到此用户 { $reset['userlog']=false; $reset['usererr']=self::$err_username; return $reset; } } public static function setSession() //置session { $sid=uniqid('sid'); //生成sid session_id($sid); session_start(); $_SESSION['user_name']=self::$username; //给session变量赋值 $_SESSION['uid']=self::$userid; //.. if(self::$usecookie) //如果使用cookie保存sid { if(!setcookie('sid',$sid,time()+self::$cookietime,self::$cookiepath)) self::$errReport("set cookie failed"); } else{ setcookie('sid','',time()-3600); //清除cookie中的sid } } public static function userLogout() //用户注销 { if(setcookie('user_name','',time()-3600))//清除cookie中的sid return true; else return false; } function errReport($str) //报错 { if(self::$error_report) echo "ERROR: $str"; } } ?>
"水生物"相关的:
·梦见乌龟慢慢走动 —— 阴影笼罩的运势。爱情方面尤其不如意。与情人反目而导致绝交的危险性非常大。
·梦见鱼在游水 —— 将有意外的收入。替叔叔买东西,叔叔当然高兴,’结果叔叔意外地赏给你一笔钱等等。
·梦见使用鱼网捕鱼 —— 将会遇到幸运事。如在火车中与电视红星偶然比肩而坐等等。将会过一段兴奋、快乐、略带一点不安的时光。
·梦见在河边钓鱼 —— 在交际方面将有一场波折。譬如,在约会中,对方的眼睛老是瞄向别的异性。由于你的责备,造成两人之间紧张的气氛等等。你也未免太爱吃醋了吧!
·梦见掏起金鱼 —— 奇遇之星将接近你。最大的可能是在街上碰到旧友。于是回忆的话匣子打开,忘记了时间的流逝。
·梦见鲸鱼喷水 —— 表示将有新的爱情产生。你和她的媒人是一本书,也许两人初识的地方,不是图书馆就是书店。
·梦见墨鱼在游泳 —— 行为方面将有一大败笔。在走廊上不经意放出瓦斯,不料却是很大的有声瓦斯,而被众人发觉。多半是像这种这种尴尬的事情。
·梦见鱼在池塘里游动 —— 朋友运恶化。一群好朋友中有两人因吵架而对立,结果一群朋友分裂成为两派。要想言归于好,没有那么容易。