php如何防止惡意重新整理存取次數

2020-07-16 10:06:34

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; 
} 
?>

以上就是php如何防止惡意重新整理存取次數的詳細內容,更多請關注TW511.COM其它相關文章!