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"; } } ?>
鳗鱼一身滑溜溜的,人们常常不能抓住它。对于大多数人来说鳗鱼是一种美味,这两种特性就使得人们常常把鳗鱼和爱情联系在一起。在梦中鳗鱼常常象征着幸福和爱情。
梦见自己紧紧握住鳗鱼,代表着自己生活将会充满惊喜,一切都会很顺利。
梦见自己握住鳗鱼、但是最终被它跑掉了,代表着自己会错失好机会,让自己非常迷茫。
女人梦见鳗鱼在清水中游玩,代表着自己将会有一段非常快乐的时光。
梦见死亡很久的鳗鱼,代表着自己将会战胜自己的对手并且克服困难走向成功。
恋爱中的男女梦见鳗鱼,代表着双方将会经历很多挫折,最终感情坚定地踏入礼堂大门。
梦见很多鳗鱼啃食自己,代表着最近自己身体潜伏已久的疾病将会爆发,让自己不堪同苦,但是经过治疗,将会痊愈。
梦见很多鳗鱼游来游去,代表着自己和身边的人将会友好相处。