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

php查询IP段的所有IP地址

程序员文章站 2022-04-04 09:41:22
...

php查询IP段的所有IP地址 此代码好像只能在win上运行。 我找了好多天才找到的可以使用的。 AD: http://www.0907.org/新建立的网站目录, 您可以去这里免费提交您的网站提高收录! 无 http://www.0907.org/ 新建立的网站目录,您可以去这里免费提交您的网站提

php查询IP段的所有IP地址
此代码好像只能在win上运行。
我找了好多天才找到的可以使用的。
AD:
http://www.0907.org/ 新建立的网站目录,
您可以去这里免费提交您的网站提高收录!
http://www.0907.org/  新建立的网站目录,
您可以去这里免费提交您的网站提高收录!
header("Content-type: text/html; charset=utf-8"); 
function cidr($ip_addr_cidr) {
$ip_arr = explode('/', $ip_addr_cidr);
$dotcount = substr_count($ip_arr[0], ".");
$padding = str_repeat(".0", 3 - $dotcount);
$ip_arr[0].=$padding;
$bin = '';
for($i=1;$i= $i ? '1' : '0';
}
$ip_arr[1] = bindec($bin);
$ip = ip2long($ip_arr[0]);
$nm = ip2long($ip_arr[1]);
$nw = ($ip & $nm);
$nm1= (~$nm);
$bc = $nw  | $nm1;
echo "此IP段包含: " . ($bc - $nw - 1) . "个IP地址
"; echo "可用IP范围: " . long2ip($nw + 1) . " 至 " . long2ip($bc - 1) . "
"; ECHO'可用IP列表:
'; ECHO'
php查询IP段的所有IP地址