防恶意刷新php教程实例代码是非常实例的,我们经常会为了防止一些操作而来对用户一些用户进行防恶意刷新下面我们来看看这款实例代码吧。
<?php
session_start();
$k=$_GET['k'];
$t=$_GET['t'];
$allowTime = 1800;//防刷新时间
$ip = get_client_ip();
$allowT = md5($ip.$k.$t);
if(!isset($_SESSION[$allowT]))
{
$refresh = true;
$_SESSION[$allowT] = time();
}elseif(time() - $_SESSION[$allowT]>$allowTime){
$refresh = true;
$_SESSION[$allowT] = time();
}else{
$refresh = false;
}
?>
时间: 2024-11-26 08:10:56