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"; } } ?>
望夜空,独守南窗,
我看到了你的东升西落。
我想,此刻,
你早已经追上了风的脚步。梦中西下的月亮,代表爱情中将会遭遇危机。梦中东升的月亮,代表着将会有好运。
梦见月亮西下,爱情方面产生重大危机。搞不好爱情将破裂,至少也有长期分离的可能。最重要的是,要多替对方想想。
梦见下沉的月亮, 则表示运气下降。
梦见满月东升,将大展鸿图。这时如果倍加努力用功或做事,将会有更好的成绩。平常默默无闻的你,这时可以一鸣惊人。
梦见月亮由山后升起,朋友运好转,困难时必可获得援助。比如口袋空空,连喝杯饮料的钱都没有时,将会有朋友请客。
梦见月亮从水平线上升起,财运上升的意味。每天都可以过得很宽裕。但千万不要浪费,否则上升的财运将会失去。
梦见月光由窗户照进,爱情方面将有新的发展。如果目前没有异性朋友,将会与身边的人产生感情。自己好好想想看吧。
梦见白天天有月亮,表示将有倒霉事发生。也许会被人敲竹杠,或被醉鬼纠缠等,最好尽量少出门,在家里过安静的日子吧。
梦见在月球上漫步,智力增高的好象征。头脑将会变得清晰无比;考试、做事也将有好成绩,会受人赏识。