(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)
crc32 — 計(jì)算一個(gè)字符串的 crc32 多項(xiàng)式
$str
): int
生成 str
的 32 位循環(huán)冗余校驗(yàn)碼多項(xiàng)式。這通常用于檢查傳輸?shù)臄?shù)據(jù)是否完整。
由于 PHP 的整數(shù)是帶符號(hào)的,所以在 32 位系統(tǒng)上許多 crc32 校驗(yàn)碼將返回負(fù)整數(shù)。 盡管在 64 位上所有 crc32() 的結(jié)果將都是正整數(shù)。
因此你需要使用 sprintf() 或 printf() 的“%u”格式符來獲取表示無符號(hào) crc32 校驗(yàn)碼的字符串。
For a hexadecimal representation of the checksum you can either use the "%x" formatter of sprintf() or printf() or the dechex() conversion functions, both of these also take care of converting the crc32() result to an unsigned integer.
Having 64bit installations also return negative integers for higher result values was considered but would break the hexadecimal conversion as negatives would get an extra 0xFFFFFFFF######## offset then. As hexadecimal representation seems to be the most common use case we decided to not break this even if it breaks direct decimal comparisons in about 50% of the cases when moving from 32 to 64bits.
In retrospect having the function return an integer maybe wasn't the best idea and returning a hex string representation right away (as e.g. md5() does) might have been a better plan to begin with.
For a more portable solution you may also consider the generic
hash(). hash("crc32b", $str)
will
return the same string as dechex(crc32($str))
.
str
要校驗(yàn)的數(shù)據(jù)。
返回 str
crc32 校驗(yàn)的整數(shù)。
示例 #1 顯示一個(gè) crc32 校驗(yàn)碼
示例中的第二行演示了如何使用 printf() 函數(shù)轉(zhuǎn)換校驗(yàn)碼:
<?php
$checksum = crc32("The quick brown fox jumped over the lazy dog.");
printf("%u\n", $checksum);
?>