如何将 IP 地址转换为 1 到 3 之间的整数?
我不是数学家,所以这可能是一个愚蠢的问题...但是 - 有没有办法将 IP 地址转换为 1 到 3 之间的整数,从而 A) 1、2 和 3 的平均分布和 B )每个IP地址总是会转换为相同的整数? (本质上是一个哈希值)。
我使用 3 作为示例 - 理想情况下我希望范围限制是可定制的。
$highest_allowed_integer = 3; $integer = get_evenly_distributed_but_always_identical_integer($_SERVER["REMOTE_ADDR"],$highest_allowed_integer);
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将整个 IPv4 地址视为以 256 为基数的数字(这意味着 4.3.2.1 将转换为
(4 << 24) + (3 << 16) + (2 << 8) + 1
),然后将其修改为 3,然后添加 1。稍微题外话,您可能想研究一下 散列。
Treat the entire IPv4 address as a number in base 256 (that means 4.3.2.1 would translate to
(4 << 24) + (3 << 16) + (2 << 8) + 1
), then mod it by 3, and then add 1.On a little digression, you might want to look into the concept of hashing.
ip2long($_SERVER["REMOTE_ADDR"])%3;
ip2long ($_SERVER["REMOTE_ADDR"])%3;
我不知道 IP 地址的分布,也不知道它们统一有多重要,但您可以尝试的一件事是将 IP 地址中的所有数字相加,然后将其除以 3。
I don't know the distribution of IP addresses or how important it is that they be uniform, but one thing you could try would be to add up all of the digits in the IP address and then mod that by 3.
是的(只要你对“平等分配”的含义不太严格)。
其他人已经建议的简单方法涉及
http://en.wikipedia.org/wiki/Modular_arithmetic 其中 3 是“模数”。
Yes (as long as you're not too strict about what "equal distribution" means).
The simple way other people have already suggested involves
http://en.wikipedia.org/wiki/Modular_arithmetic where 3 is the "modulus".