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"; } } ?>
梦境:
梦到一只小猪蹒跚地在卧室里走,然后上了墙,再就飞到了空中。梦到自己醒了(其实没醒),来到书房,发现两个黑衣坏人在他的书房里。自己走到门口(大门)发现门开了,一个中年妇女(披着凌乱蓬松的头发)冲自己喊:“还我儿子,还我儿子”自己努力关门,但们就是关不上
分析:
一、自己的现状
小猪意味着自己没有成熟的思想,蹒跚意味着太过稚嫩了,连走路也无法走得好。飞上墙,飞上空中意味着有着美好的愿望和理想。这一节梦反映出梦主人虽然还没有成熟的思想,却希望能够摆脱亲人的约束,去实现自己的理想。
二、自己内心的独立与亲人的关注
书房,梦主人隐藏了内心需要和秘密的地方,黑衣人意味着神秘的,不让外人所知的,也就是讲书房里边隐藏着梦主人不愿意让别人知晓的事情或者东西。
走到大门口门开了,门意味着与外界连接的通道,门开了意味着自己关注着外界事情,中年妇女意味着自己身边的亲人,“还我儿子”意味着儿子对她的背叛与分离。自己关门意味着自己不愿意去接受别人的思想和要求对抗别人对自己的关注与关心,门关不上意味亲人的关注是无法彻底的摆脱的。
点评
人在成长过程中,一方面是现实距离的分隔,也就是人与人间的实际空间距离的分隔;另一方面是思想的分离,也就是思想上与长辈的分歧,对长辈的不再依赖。虽然他们在这段期间认为自己的所做的事情是对的,但是亲人往往只以他们的标准来要求自己,更甚者亲人还会反对自己和干扰,面对这种反对与干扰,我们还是要去面对,而不能够彻底的反对、彻底的背叛的,还是需要听取亲人的意见的。