防刷功能的实现(thinkphp5)
2021-02-18 19:19
标签:最大 color refresh col last 实现 时间 session lse 防刷功能的实现(thinkphp5) 标签:最大 color refresh col last 实现 时间 session lse 原文地址:https://www.cnblogs.com/dongqiliang/p/12938858.html$seconds = ‘3‘; //时间段[秒]
$refresh = ‘3‘;//最大次数
$cur_time = time();
if(Session::get(‘refresh_times‘)){
Session::set(‘refresh_times‘,Session::get(‘refresh_times‘)+1);
}else{
Session::set(‘refresh_times‘,1);
Session::set(‘last_time‘,$cur_time);
}
if($cur_time - Session::get(‘last_time‘) $seconds){
if(Session::get(‘refresh_times‘) >= $refresh){
//处理工作
}
}else{
Session::set(‘refresh_times‘,0);
Session::set(‘last_time‘,$cur_time);
}
文章标题:防刷功能的实现(thinkphp5)
文章链接:http://soscw.com/index.php/essay/57186.html