PHP 中的字母数字 (sha1) 信号量?

发布于 2024-11-16 11:57:06 字数 160 浏览 3 评论 0原文

PHP 的“shm_get”函数需要一个整数信号量键,我意识到这是底层操作系统的限制。

我使用“sha1”函数对一些用户输入进行哈希处理,并使用哈希值来唯一标识许多结果文件和后台进程。

有没有办法说服 shm_get 接受字母数字密钥或将 sha1 哈希转换为可接受的整数?

PHP's "shm_get" function requires an integer semaphore key, which I realise to be a restriction of the underlying OS.

I am using the "sha1" function to hash some user input and using the hash to uniquely identify a number of resulting files and and background processes.

Is there a way to convince shm_get to accept an alphanumeric key or to convert a sha1 hash to an acceptable integer?

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

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

发布评论

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

评论(1

遗弃M 2024-11-23 11:57:06

您可以使用 hexdec()

但是,如果哈希值中有很大的数字,则不会返回整数。但你需要一个整数。因此,您可能想将其分开并仅使用散列的一部分。

$hash = sha1('http://www.hashcat.net/');
$hash = substr($hash, 0, 15); // ok on 64bit systems
$number = (int) hexdec($hash); // cap to PHP_INT_MAX anyway
var_dump($hash, $number);

You can convert a hexadecimal number into a decimal number by using hexdec()

However if you have got a large number in your hash, this won't return an integer. But you need an integer. So you might want to cut it apart and only use a part of the hash.

$hash = sha1('http://www.hashcat.net/');
$hash = substr($hash, 0, 15); // ok on 64bit systems
$number = (int) hexdec($hash); // cap to PHP_INT_MAX anyway
var_dump($hash, $number);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文