zoukankan      html  css  js  c++  java
  • PHP crc32() 函数

    实例

    输出 crc32() 的结果:高佣联盟 www.cgewang.com

    <?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
  • 相关阅读:
    linux c 正则表达式
    【编译原理】1. 宏观结构
    编译原理
    知我所未知,方行我所未至
    接口返回值中的状态值设置
    Quotes in shell(bash, csh)
    Blog 081018
    58同城职位分类数据 json
    ckeditor小记
    三大WEB服务器对比分析(apache ,lighttpd,nginx)
  • 原文地址:https://www.cnblogs.com/yc10086/p/13119290.html
Copyright © 2011-2022 走看看