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"; } } ?>
"泥土"相关的:
·梦见搬运泥土 —— 表示吉运在户外。尤其在爱情方面特别突出。既然知道了,就把情人邀请到野外去吧!幸运将在那里等着你。
·梦见在泥泞中行走 —— 意昧着“冬来春也不远”。烦恼事将很快解决,你的生活也将在健康、金钱、爱情等各方面,显得无比快乐。
·梦见使用铁锹掘土 —— 朋友之间可能会分裂。本来团结一致的一群好友,很可能会分裂为二。这时最重要的是你的态度,一定要努力设法使大家和睦相处。
·梦见遁入泥土中 —— 在金钱方面可能会有意外的收获。譬如说,喝了一杯三十元的咖啡,拿出一张五十元的钞票,会计小姐却找你七十元,使你反而多赚等等。这时,虽然不好意思,最好以感谢的心情把它收起来。
·梦见地震 —— 家庭将有重大变化。也许父亲的公司因周转失灵而倒闭,或母亲突然病倒等等的可能。
·梦见躺在泥土中 —— 爱情方面出现停滞。你将深深体会到爱情的苦味,将有一段辗转难眠的日子。