使用 PHP 扩展给定的 IP 范围

发布于 2024-12-08 17:21:57 字数 338 浏览 0 评论 0原文

我有一个文本区域:

<form action="index.php" method="post">
<textarea name="test" rows="20" cols="20"></textarea>
<input type="submit" />
</form>

我想输入 195.2.2.13/16,PHP 应该给我一个这样的列表:

195.2.2.13
195.2.2.14
195.2.2.15
195.2.2.16

我怎样才能用 PHP 做到这一点?

i have a textarea:

<form action="index.php" method="post">
<textarea name="test" rows="20" cols="20"></textarea>
<input type="submit" />
</form>

i want to type 195.2.2.13/16 and PHP should give me a list like that:

195.2.2.13
195.2.2.14
195.2.2.15
195.2.2.16

how can i do it with PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寄人书 2024-12-15 17:21:57

我注意到最初发布的代码可以使用两位小数,但万一您需要使用 3 位,下面的代码应该可以正常工作。

$input = "195.2.2.13/100";

function ipRange( $input ) {
    $input = explode( "/", $input );
        $numerator = substr( strrchr( $input[0], "." ), 1,  3 );
        $denominator = $input[1];
            $num = strlen( $numerator );
        $range = substr( $input[0], 0, -$num );

    while ( $numerator <= $denominator ) {
        echo $range.$numerator."<br />\n\r";
        $numerator++;
    }
}

// Call function
ipRange($input);

I noticed that the code posted originally was fine for two decimal points but just incase you need to use 3 the below should work fine.

$input = "195.2.2.13/100";

function ipRange( $input ) {
    $input = explode( "/", $input );
        $numerator = substr( strrchr( $input[0], "." ), 1,  3 );
        $denominator = $input[1];
            $num = strlen( $numerator );
        $range = substr( $input[0], 0, -$num );

    while ( $numerator <= $denominator ) {
        echo $range.$numerator."<br />\n\r";
        $numerator++;
    }
}

// Call function
ipRange($input);
美人骨 2024-12-15 17:21:57

您可以使用 ip2long 来完成此操作。

将字符串转换为 int,获取最小和最大 IP,在它们之间迭代并使用 long2ip

You could do this with ip2long.

Convert your string to an int, get the min and max IPs, iterate between them and render them back with long2ip.

滿滿的愛 2024-12-15 17:21:57
$parts = explode('/', $_POST['name']);
$ip = $parts[0];
$max = $parts[1];
$octets = explode('.', $ip);
$start = $octets[3];

$ips = array();
for ($i = $start; $i <= $max; $i++) {
  if ($i > 254) {
    break;
  }

  $ips[] = $octets[0] . '.' . $octets[1] . '.' . $octets[2] . '.' . $i;
}
$parts = explode('/', $_POST['name']);
$ip = $parts[0];
$max = $parts[1];
$octets = explode('.', $ip);
$start = $octets[3];

$ips = array();
for ($i = $start; $i <= $max; $i++) {
  if ($i > 254) {
    break;
  }

  $ips[] = $octets[0] . '.' . $octets[1] . '.' . $octets[2] . '.' . $i;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文