欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP 只允许指定IP访问(允许*号通配符过滤IP)

程序员文章站 2022-06-20 21:22:23
核心函数代码如下: /** * 检测访问的ip是否为规定的允许的ip * enter description here ... */ functio...

核心函数代码如下:

/**
 * 检测访问的ip是否为规定的允许的ip
 * enter description here ...
 */
function check_ip(){
	$allowed_ip=array('192.168.2.*','127.0.0.1','192.168.2.49');
	$ip=getip();
	$check_ip_arr= explode('.',$ip);//要检测的ip拆分成数组
	#限制ip
	if(!in_array($ip,$allowed_ip)) {
		foreach ($allowed_ip as $val){
		  if(strpos($val,'*')!==false){//发现有*号替代符
		  	 $arr=array();//
		  	 $arr=explode('.', $val);
		  	 $bl=true;//用于记录循环检测中是否有匹配成功的
		  	 for($i=0;$i<4;$i++){
		  	 	if($arr[$i]!='*'){//不等于* 就要进来检测,如果为*符号替代符就不检查
		  	 		if($arr[$i]!=$check_ip_arr[$i]){
		  	 			$bl=false;
		  	 			break;//终止检查本个ip 继续检查下一个ip
		  	 		}
		  	 	}
		  	 }//end for 
		  	 if($bl){//如果是true则找到有一个匹配成功的就返回
		  	 	return;
		  	 	die;
		  	 }
		  }
		}//end foreach
		header('http/1.1 403 forbidden');
		echo "access forbidden";
		die;
	}
}
* 获得访问的ip 
* enter description here ... 
*/ 
function getip() { 
  return isset($_server["http_x_forwarded_for"])?$_server["http_x_forwarded_for"] 
  :(isset($_server["http_client_ip"])?$_server["http_client_ip"] 
  :$_server["remote_addr"]); 
}

在需要检测的地方 加上调用 check_ip(); 即可;  本函数提供只允许指定的ip访问文件,并提供ip中*号通配符 匹配多ip