crc32()函数用于计算32位CRC。您可以使用该功能来验证数据完整性。
crc32(str)
str- 字符串
crc32()函数以整数形式返回字符串的crc32校验和。
以下是一个例子-
<?php $res = crc32("这是演示文字!"); printf("%u\n", $res); ?>
输出结果
2903462745
让我们看另一个例子-
<?php $s = crc32("Welcome!"); echo 'First:'.$s."\n"; printf("Second: %u\n", $s); ?>
输出结果
First: 893564114 Second: 893564114