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"; } } ?>
梦中听到来自遥远地方的呼唤,暗示你的潜意识正受到某种触动,或是感到有人需要你的帮助。
梦见听到天使的声音,或是神的语言,则暗示你内心渴望追求更高的精神境界。
梦中听见有陌生的声音叫你的名字,表示你的事业将陷人不稳定状态,陌生人会帮助你,或者你将失职。
梦中听见朋友或亲戚的呼唤,表示他们中的一个患了绝症,可能会死亡;以后你可能会答应保护他或她,但你得费很多心思。
相爱的人如果听到未婚妻(或未婚夫)的呼唤,要注意这个警告。如果他们疏忽了彼此,要互相赔礼道歉。否则他们会因误会而分手。
梦中听见早已逝去的人的呼唤,可能是警告你自己得了重病,或者由于判断失误而引起的事业上的烦恼。那呼唤是未来对个人主观内心的一种回声,由于触动了你先人依然与你同在的部分,所以听到了他(或她)的声音。和血统一样,家族成员的心智的某些部分也是一样的。
原版周公解梦:
梦见在外呼唤者,大吉。《敦煌本梦书》
梦见被呼,家鬼欲得食。《敦煌本梦书》