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"; } } ?>
梦见花轿,如果是自己坐在花轿里,喜事将近。
梦见已婚的人坐花轿,会离婚。
梦见坐轿出门,凶。《敦煌本梦书》
梦轿。梦乘轿途中,主荣贵。梦坐轿登舟,主远行。梦轿人城,主家有喜。梦轿无人抬,主行事不遂。梦轿出门,主分别。梦行道上前后有轿,主行人得吉,居家不安。梦面前一轿无人,主事有阻。梦二人同坐轿中,主事物变革。梦三人同坐轿中,在中者主有人协力,在旁者主从人行事。 梦四五人同轿,主风雨至。梦车中载轿,主婚嫁。梦轿中抬车,主行事繁难。梦乘轿登云,主名登篼第。梦轿行水中,主遁避逃窜。梦乘轿登山, 主姻缘会合。梦轿无难,主贵显。梦坐轿中,一人挽之而行,主途路萧条。梦三人抬一轿,主做事不利。梦轿破坏,主家宅不宁。梦工匠造舆轿,主官禄增加,际遇有相知。梦造轿不成,主谋为不得遂意。梦八人舆轿,主大贵。梦二轿同行,主得良友。梦前后数十乘,主有大事至。梦立 轿中,主口舌变幻。梦卧轿中,主诸事不长。梦轿中无座,主身不安宁。 梦轿无顶,主显达不隐。梦轿中有水,主财货交易。梦火置轿内,主名誉光辉。梦轿者一人所乘,梦之主一身一事而已。《梦林玄解》
梦舟中坐轿上。梦此求名有人抬举,做事有人扶助,出行宜速,必须多带 盘费。交易必成,宜自谦让谨言。《梦林玄解》