PHP判断IP是否属于某个网段

2021-01-17 17:13

阅读:471

标签:turn   lse   存储   work   ber   highlight   log   lin   bool   

第一种:

IP通过ip2long转换后可以进行比较。

 

= $network_start && $ip 

  第二种:

//案例:判断192.168.1.127是否在 (192.168.1.1--192.168.1.255)的范围里面
 
$ip_start = get_iplong(‘192.168.1.1‘); //起始ip
$ip_end = get_iplong(‘192.168.1.255‘);//至ip
$ip = get_iplong(‘192.168.1.127‘);//判断的ip
//可以这样简单判断
if($ip>=$ip_start && $ip 

  

 

 

 

 

 

 

 

 

 

 

 

 

转载自:https://blog.csdn.net/jalin107/article/details/51396886https://blog.csdn.net/u010111874/article/details/51744253

PHP判断IP是否属于某个网段

标签:turn   lse   存储   work   ber   highlight   log   lin   bool   

原文地址:https://www.cnblogs.com/aididiao/p/13362624.html


评论


亲,登录后才可以留言!