crc32

(PHP 4 >= 4.0.1, PHP 5)

crc32 — Вычисляет CRC32 для строки

Описание

int crc32 ( string $str )

Функция вычисляет контрольную сумму по алгоритму CRC32 для строки str . Это обычно используется для контроля правильности передачи данных.

В PHP целые числа имеют знак, и эта функция может возвращать отрицательные числа. Для получения строкового представления CRC32 без знака используйте формат "%u" в функциях sprintf() или printf().

Этот пример иллюстрирует вывод вычисленной CRC32 с помощью функции printf():

Пример #1 Вывод контрольной суммы CRC32

<?php
$checksum 
crc32("The quick brown fox jumped over the lazy dog.");
printf("%u\n"$checksum);
?>

См. также описание функций md5() и sha1().

Коментарии

Here is a tested and working CRC16-Algorithm:

<?php
function crc16($string) {
 
$crc 0xFFFF;
  for (
$x 0$x strlen ($string); $x++) {
   
$crc $crc ord($string[$x]);
    for (
$y 0$y 8$y++) {
      if ((
$crc 0x0001) == 0x0001) {
       
$crc = (($crc >> 1) ^ 0xA001);
      } else { 
$crc $crc >> 1; }
    }
  }
  return 
$crc;
}
?>

Regards,
Mario
2002-12-29 17:30:51
http://php5.kiev.ua/manual/ru/function.crc32.html
I needed the crc32 of a file that was pretty large, so I didn't want to read it into memory.
So I made this:

<?php
    $GLOBALS
['__crc32_table']=array();        // Lookup table array
   
__crc32_init_table();

    function 
__crc32_init_table() {            // Builds lookup table array
        // This is the official polynomial used by
        // CRC-32 in PKZip, WinZip and Ethernet.
       
$polynomial 0x04c11db7;

       
// 256 values representing ASCII character codes.
       
for($i=0;$i <= 0xFF;++$i) {
           
$GLOBALS['__crc32_table'][$i]=(__crc32_reflect($i,8) << 24);
            for(
$j=0;$j 8;++$j) {
               
$GLOBALS['__crc32_table'][$i]=(($GLOBALS['__crc32_table'][$i] << 1) ^
                    ((
$GLOBALS['__crc32_table'][$i] & (<< 31))?$polynomial:0));
            }
           
$GLOBALS['__crc32_table'][$i] = __crc32_reflect($GLOBALS['__crc32_table'][$i], 32);
        }
    }

    function 
__crc32_reflect($ref$ch) {        // Reflects CRC bits in the lookup table
       
$value=0;
       
       
// Swap bit 0 for bit 7, bit 1 for bit 6, etc.
       
for($i=1;$i<($ch+1);++$i) {
            if(
$ref 1$value |= (<< ($ch-$i));
           
$ref = (($ref >> 1) & 0x7fffffff);
        }
        return 
$value;
    }

    function 
__crc32_string($text) {        // Creates a CRC from a text string
        // Once the lookup table has been filled in by the two functions above,
        // this function creates all CRCs using only the lookup table.

        // You need unsigned variables because negative values
        // introduce high bits where zero bits are required.
        // PHP doesn't have unsigned integers:
        // I've solved this problem by doing a '&' after a '>>'.

        // Start out with all bits set high.
       
$crc=0xffffffff;
       
$len=strlen($text);

       
// Perform the algorithm on each character in the string,
        // using the lookup table values.
       
for($i=0;$i $len;++$i) {
           
$crc=(($crc >> 8) & 0x00ffffff) ^ $GLOBALS['__crc32_table'][($crc 0xFF) ^ ord($text{$i})];
        }
       
       
// Exclusive OR the result with the beginning value.
       
return $crc 0xffffffff;
    }
   
    function 
__crc32_file($name) {            // Creates a CRC from a file
        // Info: look at __crc32_string

        // Start out with all bits set high.
       
$crc=0xffffffff;

        if((
$fp=fopen($name,'rb'))===false) return false;

       
// Perform the algorithm on each character in file
       
for(;;) {
           
$i=@fread($fp,1);
            if(
strlen($i)==0) break;
           
$crc=(($crc >> 8) & 0x00ffffff) ^ $GLOBALS['__crc32_table'][($crc 0xFF) ^ ord($i)];
        }
       
        @
fclose($fp);
       
       
// Exclusive OR the result with the beginning value.
       
return $crc 0xffffffff;
    }
?>
2003-05-05 16:19:18
http://php5.kiev.ua/manual/ru/function.crc32.html
Автор:
bit by bit crc32 computation

<?php

function bitbybit_crc32($str,$first_call=false){

   
//reflection in 32 bits of crc32 polynomial 0x04C11DB7
   
$poly_reflected=0xEDB88320;

   
//=0xFFFFFFFF; //keep track of register value after each call
   
static $reg=0xFFFFFFFF;

   
//initialize register on first call
   
if($first_call$reg=0xFFFFFFFF;
   
   
$n=strlen($str);
   
$zeros=$n<$n 4;

   
//xor first $zeros=min(4,strlen($str)) bytes into the register
   
for($i=0;$i<$zeros;$i++)
       
$reg^=ord($str{$i})<<$i*8;

   
//now for the rest of the string
   
for($i=4;$i<$n;$i++){
       
$next_char=ord($str{$i});
        for(
$j=0;$j<8;$j++)
           
$reg=(($reg>>1&0x7FFFFFFF)|($next_char>>$j&1)<<0x1F)
                ^(
$reg&1)*$poly_reflected;
    }

   
//put in enough zeros at the end
   
for($i=0;$i<$zeros*8;$i++)
       
$reg=($reg>>1&0x7FFFFFFF)^($reg&1)*$poly_reflected;

   
//xor the register with 0xFFFFFFFF
   
return ~$reg;
}

$str="123456789"//whatever
$blocksize=4//whatever

for($i=0;$i<strlen($str);$i+=$blocksize$crc=bitbybit_crc32(substr($str,$i,$blocksize),!$i);

?>
2004-02-01 19:27:27
http://php5.kiev.ua/manual/ru/function.crc32.html
Note that the CRC32 algorithm should NOT be used for cryptographic purposes, or in situations where a hostile/untrusted user is involved, as it is far too easy to generate a hash collision for CRC32 (two different binary strings that have the same CRC32 hash). Instead consider SHA-1 or MD5.
2004-04-13 23:44:12
http://php5.kiev.ua/manual/ru/function.crc32.html
<?php
$data 
'dot';
echo 
dechex(crc32($data));
?>

Returns 59278a3
Witch is missing a leading zero.

<?php
$data 
'dot';
echo 
str_pad(dechex(crc32($data)), 8'0'STR_PAD_LEFT);
?>

Returns the correct string: 059278a3
2004-04-23 11:48:52
http://php5.kiev.ua/manual/ru/function.crc32.html
A faster way I've found to return CRC values of larger files, is instead of using the file()/implode() method used below, is to us file_get_contents() (PHP 4 >= 4.3.0) which uses memory mapping techniques if supported by your OS to enhance performance. Here's my example function: 

<?php
// $file is the path to the file you want to check.
function file_crc($file)
{
   
$file_string file_get_contents($file);

   
$crc crc32($file_string);
   
    return 
sprintf("%u"$crc);
}

$file_to_crc = /home/path/to/file.jpg;

echo 
file_crc($file_to_crc); // Outputs CRC value for given file.
?>

I've found in testing this method is MUCH faster for larger binary files.
2005-08-27 08:46:12
http://php5.kiev.ua/manual/ru/function.crc32.html
MODBUS RTU, CRC16, 
input-> modbus rtu string
output -> 2bytes string, in correct modbus order

<?php
function crc16($string,$length=0){

   
$auchCRCHi=array(    0x000xC10x810x400x010xC00x800x410x010xC00x800x410x000xC10x81,
               
0x400x010xC00x800x410x000xC10x810x400x000xC10x810x400x010xC0,
               
0x800x410x010xC00x800x410x000xC10x810x400x000xC10x810x400x01,
               
0xC00x800x410x000xC10x810x400x010xC00x800x410x010xC00x800x41,
               
0x000xC10x810x400x010xC00x800x410x000xC10x810x400x000xC10x81,
               
0x400x010xC00x800x410x000xC10x810x400x010xC00x800x410x010xC0,
               
0x800x410x000xC10x810x400x000xC10x810x400x010xC00x800x410x01,
               
0xC00x800x410x000xC10x810x400x010xC00x800x410x000xC10x810x40,
               
0x000xC10x810x400x010xC00x800x410x010xC00x800x410x000xC10x81,
               
0x400x000xC10x810x400x010xC00x800x410x000xC10x810x400x010xC0,
               
0x800x410x010xC00x800x410x000xC10x810x400x000xC10x810x400x01,
               
0xC00x800x410x010xC00x800x410x000xC10x810x400x010xC00x800x41,
               
0x000xC10x810x400x000xC10x810x400x010xC00x800x410x000xC10x81,
               
0x400x010xC00x800x410x010xC00x800x410x000xC10x810x400x010xC0,
               
0x800x410x000xC10x810x400x000xC10x810x400x010xC00x800x410x01,
               
0xC00x800x410x000xC10x810x400x000xC10x810x400x010xC00x800x41,
               
0x000xC10x810x400x010xC00x800x410x010xC00x800x410x000xC10x81,
               
0x40);
   
$auchCRCLo=array(    0x000xC00xC10x010xC30x030x020xC20xC60x060x070xC70x050xC50xC4,
               
0x040xCC0x0C0x0D0xCD0x0F0xCF0xCE0x0E0x0A0xCA0xCB0x0B0xC90x09,
               
0x080xC80xD80x180x190xD90x1B0xDB0xDA0x1A0x1E0xDE0xDF0x1F0xDD,
               
0x1D0x1C0xDC0x140xD40xD50x150xD70x170x160xD60xD20x120x130xD3,
               
0x110xD10xD00x100xF00x300x310xF10x330xF30xF20x320x360xF60xF7,
               
0x370xF50x350x340xF40x3C0xFC0xFD0x3D0xFF0x3F0x3E0xFE0xFA0x3A,
               
0x3B0xFB0x390xF90xF80x380x280xE80xE90x290xEB0x2B0x2A0xEA0xEE,
               
0x2E0x2F0xEF0x2D0xED0xEC0x2C0xE40x240x250xE50x270xE70xE60x26,
               
0x220xE20xE30x230xE10x210x200xE00xA00x600x610xA10x630xA30xA2,
               
0x620x660xA60xA70x670xA50x650x640xA40x6C0xAC0xAD0x6D0xAF0x6F,
               
0x6E0xAE0xAA0x6A0x6B0xAB0x690xA90xA80x680x780xB80xB90x790xBB,
               
0x7B0x7A0xBA0xBE0x7E0x7F0xBF0x7D0xBD0xBC0x7C0xB40x740x750xB5,
               
0x770xB70xB60x760x720xB20xB30x730xB10x710x700xB00x500x900x91,
               
0x510x930x530x520x920x960x560x570x970x550x950x940x540x9C0x5C,
               
0x5D0x9D0x5F0x9F0x9E0x5E0x5A0x9A0x9B0x5B0x990x590x580x980x88,
               
0x480x490x890x4B0x8B0x8A0x4A0x4E0x8E0x8F0x4F0x8D0x4D0x4C0x8C,
               
0x440x840x850x450x870x470x460x860x820x420x430x830x410x810x80,
               
0x40);
   
$length        =($length<=0?strlen($string):$length);
   
$uchCRCHi    =0xFF;
   
$uchCRCLo    =0xFF;
   
$uIndex        =0;
    for (
$i=0;$i<$length;$i++){
       
$uIndex        =$uchCRCLo ord(substr($string,$i,1));
       
$uchCRCLo    =$uchCRCHi $auchCRCHi[$uIndex];
       
$uchCRCHi    =$auchCRCLo[$uIndex] ;
    }
    return(
chr($uchCRCLo).chr($uchCRCHi));
}
?>
2006-04-08 00:52:04
http://php5.kiev.ua/manual/ru/function.crc32.html
I used the abs value of this function on a 32-bit system. When porting the code to a 64-bit system I’ve found that the value is different. The following code has the same outcome on both systems.
<?php

   $crc 
abs(crc32($string));
   if( 
$crc 0x80000000){
     
$crc ^= 0xffffffff;
     
$crc += 1;
   }

   
/* Old solution
    * $crc = abs(crc32($string))
    */

?>
2007-05-30 04:36:32
http://php5.kiev.ua/manual/ru/function.crc32.html
Автор:
I see a lot of function for crc32_file, but for php version >= 5.1.2 don't forget you can use this :

<?php
function crc32_file($filename)
{
    return 
hash_file ('CRC32'$filename FALSE );
}
?>

Using crc32(file_get_contents($filename)) will use too many memory on big file so don't use it.
2007-06-20 05:14:58
http://php5.kiev.ua/manual/ru/function.crc32.html
Автор:
Dealing with 32 bit unsigned values overflowing 32 bit php signed values can be done by adding 0x10000000 to any unexpected negative result, rather than using sprintf.

$i = crc32('1');
printf("%u\n", $i);
if (0 > $i)
{
    // Implicitly casts i as float, and corrects this sign.
    $i += 0x100000000;
}
var_dump($i);

Outputs:

2212294583
float(2212294583)
2007-10-03 14:53:47
http://php5.kiev.ua/manual/ru/function.crc32.html
This function returns the same int value on a 64 bit mc. like the crc32() function on a 32 bit mc.

<?php
function crcKw($num){
   
$crc crc32($num);
    if(
$crc 0x80000000){
       
$crc ^= 0xffffffff;
       
$crc += 1;
       
$crc = -$crc;
    }
    return 
$crc;
}
?>
2007-12-03 16:15:27
http://php5.kiev.ua/manual/ru/function.crc32.html
For those who want a more familiar return value for the function:

<?php
function strcrc32($text) {
 
$crc crc32($text);
  if (
$crc 0x80000000) {
   
$crc ^= 0xffffffff;
   
$crc += 1;
   
$crc = -$crc;
  }
  return 
$crc;
}
?>

And to show the result in Hex string:

<?php
function int32_to_hex($value) {
 
$value &= 0xffffffff;
  return 
str_pad(strtoupper(dechex($value)), 8"0"STR_PAD_LEFT);
}
?>
2009-09-29 23:16:09
http://php5.kiev.ua/manual/ru/function.crc32.html
This function returns an unsigned integer from a 64-bit Linux platform.  It does return the signed integer from other 32-bit platforms even a 64-bit Windows one.

The reason is because the two constants PHP_INT_SIZE and PHP_INT_MAX have different values on the 64-bit Linux platform.

I've created a work-around function to handle this situation.

<?php
function get_signed_int($in) {
   
$int_max pow(231)-1;
    if (
$in $int_max){
       
$out $in $int_max 2;
    }
    else {
       
$out $in;
    }
    return 
$out;
}
?>

Hope this helps.
2010-02-17 12:13:28
http://php5.kiev.ua/manual/ru/function.crc32.html
if you are looking for a fast function to hash a file, take a look at
function.hash-file
this is crc32 file checker based on a CRC32 guide
it have performance at ~ 625 KB/s on my 2.2GHz Turion
far slower than hash_file('crc32b','filename.ext')
<?php
function crc32_file ($filename)
{
   
$f = @fopen($filename,'rb');
   if (!
$f) return false;
   
   static 
$CRC32Table$Reflect8Table;
   if (!isset(
$CRC32Table))
   {
     
$Polynomial 0x04c11db7;
     
$topBit << 31;
       
      for(
$i 0$i 256$i++) 
      { 
         
$remainder $i << 24;
         for (
$j 0$j 8$j++)
         {
            if (
$remainder $topBit)
               
$remainder = ($remainder << 1) ^ $Polynomial;
            else 
$remainder $remainder << 1;
         }
         
         
$CRC32Table[$i] = $remainder;
         
         if (isset(
$Reflect8Table[$i])) continue;
         
$str str_pad(decbin($i), 8'0'STR_PAD_LEFT);
         
$num bindec(strrev($str));
         
$Reflect8Table[$i] = $num;
         
$Reflect8Table[$num] = $i;
      }
   }
   
   
$remainder 0xffffffff;
   while (
$data fread($f,1024))
   {
     
$len strlen($data);
      for (
$i 0$i $len$i++)
      {
         
$byte $Reflect8Table[ord($data[$i])];
         
$index = (($remainder >> 24) & 0xff) ^ $byte;
         
$crc $CRC32Table[$index];
         
$remainder = ($remainder << 8) ^ $crc;
      }
   }
   
   
$str decbin($remainder);
   
$str str_pad($str32'0'STR_PAD_LEFT);
   
$remainder bindec(strrev($str));
   return 
$remainder 0xffffffff;
}
?>

<?php
$a 
microtime(); 
echo 
dechex(crc32_file('filename.ext'))."\n"
$b microtime(); 
echo 
array_sum(explode(' ',$b)) - array_sum(explode(' ',$a))."\n";
?>
Output:
ec7369fe
2.384134054184 (or similiar)
2010-09-16 01:05:28
http://php5.kiev.ua/manual/ru/function.crc32.html
The crc32_combine() function provided by petteri at qred dot fi has a bug that causes an infinite loop, a shift operation on a 32-bit signed int might never reach zero. Replacing the function gf2_matrix_times() with the following seems to fix it:

<?php
function gf2_matrix_times($mat$vec)
{
   
$sum=0;
   
$i=0;

    while (
$vec) {
        if (
$vec 1) {
           
$sum ^= $mat[$i];
        }
       
$vec = ($vec >> 1) & 0x7FFFFFFF;
       
$i++;       
    }
    return 
$sum;
}
?>

Otherwise, it's probably the best solution if you can't use hash_file(). Using a 1meg read buffer, the function only takes twice as long to process a 300meg files than hash_file() in my test.
2010-09-22 18:54:08
http://php5.kiev.ua/manual/ru/function.crc32.html
small sample convert crc32 to character map

<?php

function khash($data) {
    static 
$map="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
   
$hash=crc32($data)+0x100000000;
   
$str "";
    do {
       
$str $map[31+ ($hash 31)] . $str;
       
$hash /= 31;
    } while(
$hash >= 1);     
    return 
$str;
}
$test= array(null,TRUE,FALSE,0,"0",1,"1","2","3","ab","abc","abcd","abcde","abcdefoo");
$out = array();
foreach(
$test as $s)
{
   
$out[]=khash($s).": "$s;
}
var_dump($out);

/*
output:
array
  0 => string 'zVvOYTv: ' (length=9)
  1 => string 'xKDKKL8: 1' (length=10)
  2 => string 'zVvOYTv: ' (length=9)
  3 => string 'zOKCQxh: 0' (length=10)
  4 => string 'zOKCQxh: 0' (length=10)
  5 => string 'xKDKKL8: 1' (length=10)
  6 => string 'xKDKKL8: 1' (length=10)
  7 => string 'AFSzIAO: 2' (length=10)
  8 => string 'BXGSvQJ: 3' (length=10)
  9 => string 'xZWOQSu: ab' (length=11)
  10 => string 'AVAwHOR: abc' (length=12)
  11 => string 'zKASNE1: abcd' (length=13)
  12 => string 'xLCTOV7: abcde' (length=14)
  13 => string 'zQLzKMt: abcdefoo' (length=17)

*/

?>
2011-09-08 06:04:25
http://php5.kiev.ua/manual/ru/function.crc32.html
not found anywhere crc64 based on http://bioinfadmin.cs.ucl.ac.uk/downloads/crc64/crc64.c .

(use gmp module)

<?php

/* OLDCRC */
define('POLY64REV'"d800000000000000");
define('INITIALCRC'"0000000000000000");
define('TABLELEN'256);
/* NEWCRC */
// define('POLY64REV', "95AC9329AC4BC9B5");
// define('INITIALCRC', "FFFFFFFFFFFFFFFF");

if(function_exists('gmp_init')){
        class 
CRC64{

                private static 
$CRCTable = array();

                public static function 
encode($seq){

                       
$crc gmp_init(INITIALCRC16);
                       
$init FALSE;
                       
$poly64rev gmp_init(POLY64REV16);

                        if (!
$init)
                        {
                               
$init TRUE;
                                for (
$i 0$i TABLELEN$i++)
                                {
                                       
$part gmp_init($i10);
                                        for (
$j 0$j 8$j++)
                                        {
                                                if (
gmp_strval(gmp_and($part"0x1")) != "0"){
                                                       
// if (gmp_testbit($part, 1)){ /* PHP 5 >= 5.3.0, untested */
                                                       
$part gmp_xor(gmp_div_q($part"2"), $poly64rev);
                                                } else {
                                                       
$part gmp_div_q($part"2");
                                                }
                                        }
                                       
self::$CRCTable[$i] = $part;
                                }
                        }

                        for(
$k 0$k strlen($seq); $k++){
                               
$tmp_gmp_val gmp_init(ord($seq[$k]), 10);
                               
$tableindex gmp_xor(gmp_and($crc"0xff"), $tmp_gmp_val);
                               
$crc gmp_div_q($crc"256");
                               
$crc gmp_xor($crcself::$CRCTable[gmp_strval($tableindex10)]);
                        }

                       
$res gmp_strval($crc16);

                        return 
$res;
                }
        }
} else {
        die(
"Please install php-gmp package!!!");
}
?>
2011-10-19 08:17:00
http://php5.kiev.ua/manual/ru/function.crc32.html
I made this code to verify Transmition with Vantage Pro2 ( weather station ) based on CRC16-CCITT standard.

<?php
// CRC16-CCITT validator
$crc_table = array(
   
0x00x10210x20420x30630x40840x50a50x60c60x70e7,
       
0x81080x91290xa14a0xb16b0xc18c0xd1ad0xe1ce0xf1ef,
       
0x12310x2100x32730x22520x52b50x42940x72f70x62d6,
       
0x93390x83180xb37b0xa35a0xd3bd0xc39c0xf3ff0xe3de,
       
0x24620x34430x4200x14010x64e60x74c70x44a40x5485,
       
0xa56a0xb54b0x85280x95090xe5ee0xf5cf0xc5ac0xd58d,
       
0x36530x26720x16110x6300x76d70x66f60x56950x46b4,
       
0xb75b0xa77a0x97190x87380xf7df0xe7fe0xd79d0xc7bc,
       
0x48c40x58e50x68860x78a70x8400x18610x28020x3823,
       
0xc9cc0xd9ed0xe98e0xf9af0x89480x99690xa90a0xb92b,
       
0x5af50x4ad40x7ab70x6a960x1a710xa500x3a330x2a12,
       
0xdbfd0xcbdc0xfbbf0xeb9e0x9b790x8b580xbb3b0xab1a,
       
0x6ca60x7c870x4ce40x5cc50x2c220x3c030xc600x1c41,
       
0xedae0xfd8f0xcdec0xddcd0xad2a0xbd0b0x8d680x9d49,
       
0x7e970x6eb60x5ed50x4ef40x3e130x2e320x1e510xe70,
       
0xff9f0xefbe0xdfdd0xcffc0xbf1b0xaf3a0x9f590x8f78,
       
0x91880x81a90xb1ca0xa1eb0xd10c0xc12d0xf14e0xe16f,
       
0x10800xa10x30c20x20e30x50040x40250x70460x6067,
       
0x83b90x93980xa3fb0xb3da0xc33d0xd31c0xe37f0xf35e,
       
0x2b10x12900x22f30x32d20x42350x52140x62770x7256,
       
0xb5ea0xa5cb0x95a80x85890xf56e0xe54f0xd52c0xc50d,
       
0x34e20x24c30x14a00x4810x74660x64470x54240x4405,
       
0xa7db0xb7fa0x87990x97b80xe75f0xf77e0xc71d0xd73c,
       
0x26d30x36f20x6910x16b00x66570x76760x46150x5634,
       
0xd94c0xc96d0xf90e0xe92f0x99c80x89e90xb98a0xa9ab,
       
0x58440x48650x78060x68270x18c00x8e10x38820x28a3,
       
0xcb7d0xdb5c0xeb3f0xfb1e0x8bf90x9bd80xabbb0xbb9a,
       
0x4a750x5a540x6a370x7a160xaf10x1ad00x2ab30x3a92,
       
0xfd2e0xed0f0xdd6c0xcd4d0xbdaa0xad8b0x9de80x8dc9,
       
0x7c260x6c070x5c640x4c450x3ca20x2c830x1ce00xcc1,
       
0xef1f0xff3e0xcf5d0xdf7c0xaf9b0xbfba0x8fd90x9ff8,
       
0x6e170x7e360x4e550x5e740x2e930x3eb20xed10x1ef0);

   
$test chr(0xC6).chr(0xCE).chr(0xA2).chr(0x03); // CRC16-CCITT = 0xE2B4
   
genCRC ($test);
       
function 
genCRC (&$ptr)
{
   
$crc 0x0000;
   
$crc_table $GLOBALS['crc_table'];
    for (
$i 0$i strlen($ptr); $i++)
       
$crc $crc_table[(($crc>>8) ^ ord($ptr[$i]))] ^ (($crc<<8) & 0x00FFFF);
    return 
$crc;
}
?>
2011-11-26 20:02:42
http://php5.kiev.ua/manual/ru/function.crc32.html
The crc32() function can return a signed integer in certain environments.  Assuming that it will always return an unsigned integer is not portable.

Depending on your desired behavior, you should probably use sprintf() on the result or the generic hash() instead.  Also note that integer arithmetic operators do not have the precision to work correctly with the integer output.
2012-08-07 11:54:38
http://php5.kiev.ua/manual/ru/function.crc32.html
Автор:
Implementation crc64() in php 64bit

<?php

/**
 * @return array
 */
function crc64Table()
{
   
$crc64tab = [];

   
// ECMA polynomial
   
$poly64rev = (0xC96C5795 << 32) | 0xD7870F42;

   
// ISO polynomial
    // $poly64rev = (0xD8 << 56);

   
for ($i 0$i 256$i++)
    {
        for (
$part $i$bit 0$bit 8$bit++) {
            if (
$part 1) {
               
$part = (($part >> 1) & ~(0x8 << 60)) ^ $poly64rev;
            } else {
               
$part = ($part >> 1) & ~(0x8 << 60);
            }
        }

       
$crc64tab[$i] = $part;
    }

    return 
$crc64tab;
}

/**
 * @param string $string
 * @param string $format
 * @return mixed
 * 
 * Formats:
 *  crc64('php'); // afe4e823e7cef190
 *  crc64('php', '0x%x'); // 0xafe4e823e7cef190
 *  crc64('php', '0x%X'); // 0xAFE4E823E7CEF190
 *  crc64('php', '%d'); // -5772233581471534704 signed int
 *  crc64('php', '%u'); // 12674510492238016912 unsigned int
 */
function crc64($string$format '%x')
{
    static 
$crc64tab;

    if (
$crc64tab === null) {
       
$crc64tab crc64Table();
    }

   
$crc 0;

    for (
$i 0$i strlen($string); $i++) {
       
$crc $crc64tab[($crc ord($string[$i])) & 0xff] ^ (($crc >> 8) & ~(0xff << 56));
    }

    return 
sprintf($format$crc);
}
2013-03-18 15:16:33
http://php5.kiev.ua/manual/ru/function.crc32.html
The khash() function by sukitsupaluk has two problems, it does not use all 62 characters from the $map set and when corrected it then produces different results on 64-bit compared to 32-bit PHP systems.

Here is my modified version :

<?php

/**
 * Small sample convert crc32 to character map
 * Based upon function.crc32#105703
 * (Modified to now use all characters from $map)
 * (Modified to be 32-bit PHP safe)
 */
function khash($data)
{
    static 
$map "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
   
$hash bcadd(sprintf('%u',crc32($data)) , 0x100000000);
   
$str "";
    do
    {
       
$str $map[bcmod($hash62) ] . $str;
       
$hash bcdiv($hash62);
    }
    while (
$hash >= 1);
    return 
$str;
}
//-----------------------------------------------------------------------------------
$test = array(nulltruefalse0"0"1"1""2""3""ab""abc""abcd",
   
"abcde""abcdefoo""248840027""1365848013"// time()
   
"9223372035488927794"// PHP_INT_MAX-time()
   
"901131979"// mt_rand()
   
"Sat, 13 Apr 2013 10:13:33 +0000" // gmdate('r') 
);
$out = array();
foreach (
$test as $s)
{
   
$out[] = khash($s) . ": " $s;
}
print 
"<h3>khash() -- maps a crc32 result into a (62-character) result</h3>";
print 
'<pre>';
var_dump($out);
print 
"\n\n\$GLOBALS['raw_crc32']:\n";
var_dump($GLOBALS['raw_crc32']);
print 
'</pre><hr>';
flush();
$pefile __FILE__;
print 
"<h3>$pefile</h3>";
ob_end_flush();
flush();
highlight_file($pefile);
print 
"<hr>";
//-----------------------------------------------------------------------------------
/* CURRENT output
array(19) {
  [0]=>
  string(8) "4GFfc4: "
  [1]=>
  string(9) "76nO4L: 1"
  [2]=>
  string(8) "4GFfc4: "
  [3]=>
  string(9) "9aGcIp: 0"
  [4]=>
  string(9) "9aGcIp: 0"
  [5]=>
  string(9) "76nO4L: 1"
  [6]=>
  string(9) "76nO4L: 1"
  [7]=>
  string(9) "5b8iNn: 2"
  [8]=>
  string(9) "6HmfFN: 3"
  [9]=>
  string(10) "7ADPD7: ab"
  [10]=>
  string(11) "5F0aUq: abc"
  [11]=>
  string(12) "92kWw9: abcd"
  [12]=>
  string(13) "78hcpf: abcde"
  [13]=>
  string(16) "9eBVPB: abcdefoo"
  [14]=>
  string(17) "5TjOuZ: 248840027"
  [15]=>
  string(18) "5eNliI: 1365848013"
  [16]=>
  string(27) "4Q00e5: 9223372035488927794"
  [17]=>
  string(17) "6DUX8V: 901131979"
  [18]=>
  string(39) "5i2aOW: Sat, 13 Apr 2013 10:13:33 +0000"
}
*/
//-----------------------------------------------------------------------------------

?>
2013-04-13 19:22:06
http://php5.kiev.ua/manual/ru/function.crc32.html
A faster implementation of modbus CRC16

function crc16($data)
 {
   $crc = 0xFFFF;
   for ($i = 0; $i < strlen($data); $i++)
   {
     $crc ^=ord($data[$i]);
     
        for ($j = 8; $j !=0; $j--)
        {
            if (($crc & 0x0001) !=0)
            {
                $crc >>= 1;
                $crc ^= 0xA001;
            }
            else
                $crc >>= 1;
        }
    }   
   return $crc;
 }
2016-01-30 19:15:38
http://php5.kiev.ua/manual/ru/function.crc32.html
crc32() on php 32bit and 64 bit not equal in some values

i use abs for result in positive for 32 bit

not equal
<?=abs(crc32(1));?>
64 bit
2212294583
32 bit
2082672713

equal
<?=abs(crc32(3));?>
64 bit
1842515611
32 bit
1842515611
2016-12-29 11:33:55
http://php5.kiev.ua/manual/ru/function.crc32.html

    Поддержать сайт на родительском проекте КГБ