使用 PHP 扩展给定的 IP 范围
我有一个文本区域:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我注意到最初发布的代码可以使用两位小数,但万一您需要使用 3 位,下面的代码应该可以正常工作。
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.
您可以使用 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.