php的crc32函数使用时需要注意的问题(不然就是坑)
程序员文章站
2022-05-27 14:29:53
前几天写了一个分表程序,用的hash算法是crc32.分表的函数如下:
复制代码 代码如下:
function _gethash(...
前几天写了一个分表程序,用的hash算法是crc32.分表的函数如下:
复制代码 代码如下:
function _gethash($username)
{
$hash = crc32($username) % 512;
return $hash;
}
function _gettable($username)
{
$hash = self::_gethash($username);
return 'user_' . $hash;
}
首先在本地32位window机上生成好数据并插入对应的表中。但是再把程序和数据传到服务器上(64为linux),发现查不到数据。经过排查后发现,原来服务器上crc32的结果和本地不同。再查php手册才知,crc32的接口原来和机器有关。
php手册的描述:
复制代码 代码如下:
because php's integer type is signed many crc32 checksums will result in negative integers on 32bit platforms. on 64bit installations all crc32() results will be positive integers though.
crc32返回的结果在32位机上会产生溢出,所以结果可能为负数。而在64位机上不会溢出,所以总是正值。
crc算法是按字长位数bit进行计算的。
crc32函数会按照php中的两个常量参考计算 php_int_size,php_int_max
这两个常量的定义:
整型数的字长和平台有关,尽管通常最大值是大约二十亿(32 位有符号)。php 不支持无符号整数。integer值的字长可以用常量php_int_size来表示,自 php 4.4.0 和 php 5.0.5后,最大值可以用常量php_int_max来表示。
输出下32位中php_int_size:4,php_int_max:2147483647
输出下64位中php_int_size:8,php_int_max:9223372036854775807
上一篇: 没想到抓头竟有这么多好处,,果断抓起
下一篇: 中医瘦腰有4步 快速甩掉腹部游泳圈
推荐阅读
-
php的crc32函数使用时需要注意的问题(不然就是坑)
-
php的crc32函数使用时需要注意的问题(不然就是坑)
-
php的crc32函数使用时需要注意的问题(不然就是坑)
-
php的crc32函数使用时需要注意的问题(不然就是坑),crc32函数_PHP教程
-
php的crc32函数使用时需要注意的问题(不然就是坑)_PHP
-
php的crc32函数使用时需要注意的问题(不然就是坑)_php技巧
-
php的crc32函数使用时需要注意的问题(不然就是坑),crc32函数_PHP教程
-
php的crc32函数使用时需要注意的问题(不然就是坑),crc32函数
-
php的crc32函数使用时需要注意的问题_PHP教程
-
php的crc32函数使用时需要注意的问题(不然就是坑)_PHP