php ip段禁止的設定方法:先透過「if(stripos($ban,$ip))」方法停用單一ip;然後透過「while($ip[count($ip-1)] !='.')$ip=substr($ip,1, -1);”方法實作禁用ip段即可。
推薦:《PHP影片教學》
因為還沒深入學習Apache和nginx 所以用PHP寫了一個可以停用位址的小程式
使用時只需:
<?php include("banIP.php");?>
即可
停用單一ip如下:
<?php //禁用ip地址 $ip=$_SERVER["REMOTE_ADDR"]; $ban=file_get_contents("ban.dat"); if(stripos($ban,$ip)) { die("Your IP Address is:$ip,you're forbiden to view this page!"); } echo "Your IP Address is:$ip,hello!"; ?>
ban.dat檔案如下:
BEGIN: 119.184.251.245 127.0.0.1 192.168.1.100
停用ip段如下:
<?php //禁用ip地址 $ip=$_SERVER["REMOTE_ADDR"]; while($ip[count($ip-1)]!='.')$ip=substr($ip,1, -1); //整理出ip段 $ban=file_get_contents("ban.dat"); if(stripos($ban,$ip)) { die("U're forbiden to view this page!"); } echo "Hello!"; ?>
以上是php ip段禁止的設定方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!