我开发了一个搜索页面,只有登录用户才能访问。但是我希望在一周内将每个用户的搜索限制为仅20次。一个用户将无法搜索超过20次。请帮助我如何实现这一目标。
答案 0 :(得分:0)
在users表中实现两个列:
第1列:search_counts -default 0
coumn 2:search_timestamp -default 0
当用户发起搜索时:
检查timmstap,如果它超过一周,将其设置为当前时间(现在)并将计数器设置为1并允许搜索,如果没有,检查计数器是否等于最大允许搜索然后中止它否则增加计数器和允许搜索。
假设您将用户表中的couner和timstamp值传递给它,这是一个未经测试的函数:
function search_check($counter,$ts,$max=20,$period =7) {
$p = $period * 24 * 60 * 60;
$now = time();
if(($now - $ts) >= $p ){
//set the time stamp to now in DB
//set the counter to 1 in DB
return true;
}else {
if($counter < $max){ //
//increment the counter by 1 in DB
return true;
}else{
return false;
}
}
}
用法:
//retrieve counter and timestamp values from the DB users table
$can_search = search_check($counter,$ts);
if($can_search){
//search and return search result
}else{
echo "Sorry, maximum weekly searches reached"
}