如何将 IP 地址转换为 1 到 3 之间的整数?

发布于 2024-10-18 14:46:00 字数 327 浏览 0 评论 0 原文

我不是数学家,所以这可能是一个愚蠢的问题...但是 - 有没有办法将 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);

谢谢!

I'm not a mathematician so this may be a stupid question...but - is there any way to translate IP addresses into integers between 1 and 3, whereby there will A) be an equal distribution of 1's, 2's and 3's and B) each IP address will always translate to the same integer? (in essence, a hash).

I'm using 3 as an example - ideally I'd like the range limit to be customizable.

$highest_allowed_integer = 3;
$integer = get_evenly_distributed_but_always_identical_integer($_SERVER["REMOTE_ADDR"],$highest_allowed_integer);

Thanks!

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

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

发布评论

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

评论(4

素食主义者 2024-10-25 14:46:00

将整个 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.

十年九夏 2024-10-25 14:46:00

ip2long($_SERVER["REMOTE_ADDR"])%3;

ip2long ($_SERVER["REMOTE_ADDR"])%3;

自控 2024-10-25 14:46:00

我不知道 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.

冬天旳寂寞 2024-10-25 14:46:00

是的(只要你对“平等分配”的含义不太严格)。

其他人已经建议的简单方法涉及
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".

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