如何从 PHP 中的 CIDR 表示法获取 IP 地址列表?
可能的重复:
从 PHP 中的 CIDR 表示法获取列表 IP
你好,
我需要从 CIDR 表示法生成 IP 地址列表。
例如,用户输入200.41.132.11/28。作为回报,我需要显示与此 CIDR 表示法匹配的 IP 地址列表。
你知道这方面的 PHP 函数或者有算法吗?
感谢您的帮助。
垫。
Possible Duplicate:
Getting list IPs from CIDR notation in PHP
Hi there,
I need to generate the list of IP addresses from a CIDR notation.
For example, user has entered 200.41.132.11/28. In return, I need to show the list of IP addresses matching this CIDR notation.
Do you know a PHP function for this or have an algorithm?
Thanks for your help.
Mat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许我错了,但尝试这样的事情(未测试):
输出应该是
To get bit mask (network mask) only
输出
注意:它仅适用于 IPv4!
Maybe I'm wrong but try something like this (not tested):
Output should be
To get bit mask (network mask) only
Output
Note: It works for IPv4 only!