<?php public function checkyzm($yzm){ $verify=new \Think\Verify();//实例化TP自带的Verify方法 if($verify->check($yzm)){//调用check方法 return true; }else{ echo '验证码错误'; exit(); } } public function login(){ if(!IS_POST){ $this->display(); }else{ //若验证码验证通过 if($this->checkyzm(I('post.yzm'))){ $username=I('post.username'); $user=D( ' user ' )->where(" username='$username' ")->find(); //post过来的password拼接盐md5后密码=数据库的密码,则通过 if(md5( I( ' post.password ' ) . $user[ ' salt ' ])===$user['password']{ cookie('username' , $userp[ ' username ' ]);//写入cookie $this->redirect('/');//跳转到首页 }else{ echo '用户名或密码不对'; } } } } //若没有cookie数据 您好欢迎观临 <if condition="$Think.cookie.username eq null"> <a href="{:U('Home/User/login')}" rel="external nofollow" rel="external nofollow" style="color:#50884b">登陆</a> | <a href="{:U('Home/User/reg')}" rel="external nofollow" style="color:#50884b">免费注册</a> | <else /> {$Think.cookie.username}| <<a href="{:U('Home/User/login')}" rel="external nofollow" rel="external nofollow" style="color:#50884b">退出</a> </if> public function logout(){ cookie('username' , null); $this->redirect('/'); } ?>}
相关推荐:
Yii2框架自动登录以及登录退出功能的实现方法
以上就是ThinkPHP实现登录退出功能的代码分享的详细内容,更多请关注php中文网其它相关文章!