PHP中的crc32()函数

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