当前位置:Gxlcms > PHP教程 > PHP阻止多个IP访问你的网站

PHP阻止多个IP访问你的网站

时间:2021-07-01 10:21:17 帮助过:2人阅读

这个代码片段可以方便你禁止某些特定的 IP 地址访问你的网站

  1. if ( !file_exists('blocked_ips.txt') ) {
  2. $deny_ips = array(
  3. '127.0.0.1',
  4. '192.168.1.1',
  5. '83.76.27.9',
  6. '192.168.1.163'
  7. );
  8. } else {
  9. $deny_ips = file('blocked_ips.txt');
  10. }
  11. // read user ip adress:
  12. $ip = isset($_SERVER['REMOTE_ADDR']) ? trim($_SERVER['REMOTE_ADDR']) : '';
  13. // search current IP in $deny_ips array
  14. if ( (array_search($ip, $deny_ips))!== FALSE ) {
  15. // address is blocked:
  16. echo 'Your IP adress ('.$ip.') was blocked!';
  17. exit;
  18. }

多个, PHP

人气教程排行