Detailed explanation of login timeout detection function example in PHP

墨辰丷
Release: 2023-03-27 20:10:01
Original
1775 people have browsed it

This article mainly introduces the relevant information about the detailed explanation of the php login timeout detection function example. Friends who need it can refer to

The detailed explanation of the php login timeout detection function example

Foreword:

php login timeout problem, when the user does not operate the page for a certain period of time, he will automatically log out. The principle is to judge the access through js! The code is as follows (taking thinkphp5.0 version as an example)

1. Create a login section controller:

request = \think\Request::instance(); } public function login(){ if($this->request->method() == "POST"){ $data = $this->request->param(); //这里为登录验证(自行补充) ....... //通过登录提交的信息获取数据库中的用户,并记录ID($id) cookie('ADMIN_ID',$result["id"]);//cookie缓存 cookie('LOGIN_TIME',Request::instance()->time()+3600);//记录登录时间,并缓存1小时 } return view(); } // 检测是否登录超时(js调用,url为:http://您的域名/manage/main/loginLosetime) public function loginLosetime(){ $logintime = cookie('LOGIN_TIME'); $time = request()->time(); if($time > $logintime){ return json(['code'=>1,'msg'=>'登录超时!','url'=>url('main/login')]); }else{ return json(['code'=>0]); } } }
Copy after login

2. Create a public controller (all controllers that require login verification inherit this controller)

request = \think\Request::instance(); $this->checkLogin();//检测登录 $this->doAction();//记录动作 } protected function checkLogin(){ $cookie_admin_id = cookie('ADMIN_ID'); if(!empty($cookie_admin_id)){ //获取登录用户信息 ....... }else{ if($this->request->isAjax()){ return $this->error('您还没有登录!',url('main/login')); }else{ header("Location:".url("main/login")); exit(); } } } // 页面操作记录 protected function doAction(){ $logintime = cookie('LOGIN_TIME');//获取缓存登录超时时间 $time = request()->time();//当前时间 //判断当前时间是否大于缓存时间 或者 超时时间小于60秒后,自动多加1个小时时间 if($time > $logintime || ($time - $logintime) < 60){ $newLogintime = $logintime + 3600; cookie('LOGIN_TIME',$newLogintime); } } }
Copy after login

3. js file

$.ajaxSetup({ cache: false }); $(function(){ setInterval(function() { loginLosetime() }, 360000);//设置1小时自动执行 loginLosetime 函数(时间可自行调整) }); // 登录超时检测 function loginLosetime(){ $.get(AJAX_URL+'main/loginLosetime',function(res){ if(res.code == 1){ window.location.href = res.url; } }); }
Copy after login

Finally, just call the appeal js file on all pages. There is no need to call it on the login page!

The above is the entire content of this article, I hope it will be helpful to everyone's study.


Related recommendations:

How to implement thefunction of randomly generating watermark images in PHP

File upload based on Ajax and HTML5 in MVCFunction

Paypal realizes recurring deduction (subscription)FunctionMethods

The above is the detailed content of Detailed explanation of login timeout detection function example in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!