Heim >Backend-Entwicklung >PHP-Tutorial >PHP阻止多个 IP 访问你的网站

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

WBOY
WBOYOriginal
2016-07-25 08:42:40938Durchsuche

这个代码片段可以方便你禁止某些特定的 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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn