Home >Backend Development >PHP Tutorial >php中CRC32遇到负数问题的解决方案

php中CRC32遇到负数问题的解决方案

WBOY
WBOYOriginal
2016-06-23 13:40:501218browse

在使用PHP的CRC32函数的时候,因为在32位系统中,int是4个字节带符号位,因此输出结果最高位为1的时候,就变成负数了。

使用以下方式可以让输出结果不含符号位

sprintf('%u', crc32($Node['HBAID']));

如果你遇到这样的问题,按照上述方式处理就能药到病除。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn