欢迎访问服务器技术网-www.fuwuqijishu.com

PHP crc32() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 18次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP crc32() 函数

PHP String 参考手册

实例

输出 crc32() 的结果:

<?php
$str = crc32("Hello World!");
printf("%un",$str);
?>


定义和用法

crc32() 函数计算一个字符串的 32 位 CRC(循环冗余校验)。

该函数可用于验证数据的完整性。

提示:为确保您能从 crc32() 函数中取得正确的字符串表示,您必须使用 printf() 或 sprintf() 函数的 %u 格式符。如果未使用 %u 格式符,结果可能会显示为不正确的数字或者负数。


语法

crc32(string)

参数 描述
string 必需。规定要计算的字符串。

技术细节

返回值: 以整数形式返回 string 的 32 位循环冗余校验码多项式。
PHP 版本: 4.0.1+


实例 1

在本实例中,我们将在使用以及不使用 “%u” 格式符的情况下,输出 crc32() 的结果(注意结果是相同的):

实例

<?php
$str = crc32("Hello world!");
echo Without %u: .$str."<br>";
echo With %u: ;
printf("%u",$str);
?>

上面的代码将输出:

Without %u: 461707669
With %u: 461707669


实例 2

在本实例中,我们将在使用以及不使用 “%u” 格式符的情况下,输出 crc32() 的结果(注意结果是不相同的):

实例

<?php
$str = crc32("Hello world.");
echo Without %u: .$str."<br>";
echo With %u: ;
printf("%u",$str);
?>

上面的代码将输出:

Without %u: -1959132156
With %u: 2335835140


PHP String 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2318.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900