PHP 日本研討會 2024

crc32

(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)

crc32計算字串的 crc32 多項式

描述

crc32(字串 $string): 整數

產生 string 的 32 位元長度的循環冗餘校驗多項式。這通常用於驗證傳輸資料的完整性。

警告

由於 PHP 的整數型別是有號數,許多 crc32 檢查碼在 32 位元平台上會產生負整數。在 64 位元安裝中,所有 crc32() 的結果都會是正整數。

因此,您需要使用 sprintf()printf() 的「%u」格式化符號,以取得十進位格式的無號 crc32() 檢查碼的字串表示。

對於檢查碼的十六進位表示法,您可以使用 sprintf()printf() 的「%x」格式化符號,或者使用 dechex() 轉換函式,這兩種方法都會將 crc32() 的結果轉換為無號整數。

考慮到較高的結果值,讓 64 位元安裝也回傳負整數,但這樣會破壞十六進位轉換,因為負數會得到額外的 0xFFFFFFFF######## 偏移量。由於十六進位表示法似乎是最常見的用例,我們決定不破壞它,即使在從 32 位元移動到 64 位元時,大約 50% 的情況下會破壞直接的十進位比較。

回想起來,讓函式回傳整數可能不是最好的主意,而且一開始就回傳十六進位字串表示法(例如 md5() 的做法)可能是一個更好的計畫。

對於更可攜的解決方案,您也可以考慮通用的 hash()hash("crc32b", $str) 將回傳與 str_pad(dechex(crc32($str)), 8, '0', STR_PAD_LEFT) 相同的字串。

參數

字串

資料。

回傳值

回傳 string 的 crc32 檢查碼,型別為整數。

範例

範例 #1 顯示 crc32 檢查碼

此範例顯示如何使用 printf() 函式列印轉換後的檢查碼

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

參見

  • hash() - 產生雜湊值(訊息摘要)
  • md5() - 計算字串的 md5 雜湊值
  • sha1() - 計算字串的 sha1 雜湊值

新增註解

使用者貢獻的註解 22 筆註解

24
jian 在 theorchard 點 com
14 年前
此函式從 64 位元 Linux 平台回傳無號整數。它確實會從其他 32 位元平台回傳有號整數,甚至是 64 位元 Windows 平台。

原因是 PHP_INT_SIZE 和 PHP_INT_MAX 這兩個常數在 64 位元 Linux 平台上具有不同的值。

我建立了一個變通函式來處理這種情況。

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

希望這有幫助。
11
i 在 morfi 點 ru
11 年前
在 php 64 位元中實作 crc64()

<?php

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

// ECMA 多項式
$poly64rev = (0xC96C5795 << 32) | 0xD7870F42;

// ISO 多項式
// $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
*
* 格式:
* 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);
}
9
JS at JavsSys dot Org
11 年前
sukitsupaluk 的 khash() 函數有兩個問題,它沒有使用 $map 集合中的全部 62 個字元,而且在修正後,在 64 位元系統上產生的結果與 32 位元 PHP 系統上的結果不同。

這是我的修改版本

<?php

/**
* 將 crc32 轉換為字元映射的小範例
* 基於 https://php.dev.org.tw/manual/en/function.crc32.php#105703
* (已修改為現在使用 $map 中的所有字元)
* (已修改為對 32 位元 PHP 安全)
*/
function khash($data)
{
static
$map = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
$hash = bcadd(sprintf('%u',crc32($data)) , 0x100000000);
$str = "";
do
{
$str = $map[bcmod($hash, 62) ] . $str;
$hash = bcdiv($hash, 62);
}
while (
$hash >= 1);
return
$str;
}
//-----------------------------------------------------------------------------------
$test = array(null, true, false, 0, "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() -- 將 crc32 結果映射到 (62 個字元) 的結果</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>";
//-----------------------------------------------------------------------------------
/* 目前輸出
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"
}
*/
//-----------------------------------------------------------------------------------

?>
10
Bulk at bulksplace dot com
19 年前
我發現一種更快速的方法來返回較大檔案的 CRC 值,不是使用下面使用的 file()/implode() 方法,而是使用 file_get_contents() (PHP 4 >= 4.3.0),如果您的作業系統支援,它會使用記憶體映射技術來增強效能。 這是我的範例函數

<?php
// $file 是您要檢查的檔案路徑。
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); // 輸出給定檔案的 CRC 值。
?>

我發現在測試中,此方法對於較大的二進位檔案速度快很多。
8
slimshady451
17 年前
我看到很多關於 crc32_file 的函式,但對於 php 版本 >= 5.1.2,別忘了你可以使用這個

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

使用 crc32(file_get_contents($filename)) 會在大型檔案上使用過多記憶體,所以請不要使用它。
6
same
20 年前
逐位元 crc32 計算

<?php

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

//crc32 多項式的 32 位元反射 0x04C11DB7
$poly_reflected=0xEDB88320;

//=0xFFFFFFFF; //追蹤每次呼叫後的暫存器值
static $reg=0xFFFFFFFF;

//在第一次呼叫時初始化暫存器
if($first_call) $reg=0xFFFFFFFF;

$n=strlen($str);
$zeros=$n<4 ? $n : 4;

//將前 $zeros=min(4,strlen($str)) 個位元組 XOR 運算到暫存器中
for($i=0;$i<$zeros;$i++)
$reg^=ord($str{$i})<<$i*8;

//現在處理字串的其餘部分
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;
}

//在結尾放入足夠的零
for($i=0;$i<$zeros*8;$i++)
$reg=($reg>>1&0x7FFFFFFF)^($reg&1)*$poly_reflected;

//將暫存器與 0xFFFFFFFF 做 XOR 運算
return ~$reg;
}

$str="123456789"; //隨便
$blocksize=4; //隨便

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

?>
5
dave at jufer dot info
17 年前
這個函式在 64 位元的機器上會返回與 32 位元機器上的 crc32() 函式相同的整數值。

<?php
function crcKw($num){
$crc = crc32($num);
if(
$crc & 0x80000000){
$crc ^= 0xffffffff;
$crc += 1;
$crc = -$crc;
}
return
$crc;
}
?>
3
Clifford dot ct at gmail dot com
12 年前
crc32() 函式在某些環境中可能會返回帶正負號的整數。假設它總是返回無號整數是不可移植的。

根據您想要的行為,您應該可能在結果上使用 sprintf() 或通用的 hash() 函式。另請注意,整數算術運算子沒有足夠的精度來正確處理整數輸出。
3
alban dot lopez+php [ at ] gmail dot com
13 年前
我撰寫了此程式碼,以根據 CRC16-CCITT 標準驗證與 Vantage Pro2(氣象站)的傳輸。

<?php
// CRC16-CCITT validator
$crc_table = array(
0x0, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
0x1231, 0x210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,
0x2462, 0x3443, 0x420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,
0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,
0x3653, 0x2672, 0x1611, 0x630, 0x76d7, 0x66f6, 0x5695, 0x46b4,
0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,
0x48c4, 0x58e5, 0x6886, 0x78a7, 0x840, 0x1861, 0x2802, 0x3823,
0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,
0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0xa50, 0x3a33, 0x2a12,
0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,
0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0xc60, 0x1c41,
0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,
0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0xe70,
0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,
0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,
0x1080, 0xa1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,
0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,
0x2b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,
0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,
0x34e2, 0x24c3, 0x14a0, 0x481, 0x7466, 0x6447, 0x5424, 0x4405,
0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,
0x26d3, 0x36f2, 0x691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,
0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,
0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x8e1, 0x3882, 0x28a3,
0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,
0x4a75, 0x5a54, 0x6a37, 0x7a16, 0xaf1, 0x1ad0, 0x2ab3, 0x3a92,
0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,
0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0xcc1,
0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,
0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0xed1, 0x1ef0);

$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;
}
?>
3
arachnid at notdot dot net
20 年前
請注意,CRC32 演算法不應使用於加密用途,或是在涉及敵意/不受信任的使用者的情況下,因為產生 CRC32 的雜湊碰撞(兩個不同的二進位字串具有相同的 CRC32 雜湊值)太容易了。請考慮改用 SHA-1 或 MD5。
2
spectrumizer at cycos dot net
21 年前
這是一個經過測試且可運作的 CRC16 演算法

<?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;
}
?>

此致,
Mario
4
roberto at spadim dot com dot br
18 年前
MODBUS RTU,CRC16,
輸入 -> modbus rtu 字串
輸出 -> 2 位元組字串,以正確的 modbus 順序

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

$auchCRCHi=array( 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,
0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01,
0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81,
0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01,
0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,
0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01,
0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,
0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01,
0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,
0x40);
$auchCRCLo=array( 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6, 0x06, 0x07, 0xC7, 0x05, 0xC5, 0xC4,
0x04, 0xCC, 0x0C, 0x0D, 0xCD, 0x0F, 0xCF, 0xCE, 0x0E, 0x0A, 0xCA, 0xCB, 0x0B, 0xC9, 0x09,
0x08, 0xC8, 0xD8, 0x18, 0x19, 0xD9, 0x1B, 0xDB, 0xDA, 0x1A, 0x1E, 0xDE, 0xDF, 0x1F, 0xDD,
0x1D, 0x1C, 0xDC, 0x14, 0xD4, 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2, 0x12, 0x13, 0xD3,
0x11, 0xD1, 0xD0, 0x10, 0xF0, 0x30, 0x31, 0xF1, 0x33, 0xF3, 0xF2, 0x32, 0x36, 0xF6, 0xF7,
0x37, 0xF5, 0x35, 0x34, 0xF4, 0x3C, 0xFC, 0xFD, 0x3D, 0xFF, 0x3F, 0x3E, 0xFE, 0xFA, 0x3A,
0x3B, 0xFB, 0x39, 0xF9, 0xF8, 0x38, 0x28, 0xE8, 0xE9, 0x29, 0xEB, 0x2B, 0x2A, 0xEA, 0xEE,
0x2E, 0x2F, 0xEF, 0x2D, 0xED, 0xEC, 0x2C, 0xE4, 0x24, 0x25, 0xE5, 0x27, 0xE7, 0xE6, 0x26,
0x22, 0xE2, 0xE3, 0x23, 0xE1, 0x21, 0x20, 0xE0, 0xA0, 0x60, 0x61, 0xA1, 0x63, 0xA3, 0xA2,
0x62, 0x66, 0xA6, 0xA7, 0x67, 0xA5, 0x65, 0x64, 0xA4, 0x6C, 0xAC, 0xAD, 0x6D, 0xAF, 0x6F,
0x6E, 0xAE, 0xAA, 0x6A, 0x6B, 0xAB, 0x69, 0xA9, 0xA8, 0x68, 0x78, 0xB8, 0xB9, 0x79, 0xBB,
0x7B, 0x7A, 0xBA, 0xBE, 0x7E, 0x7F, 0xBF, 0x7D, 0xBD, 0xBC, 0x7C, 0xB4, 0x74, 0x75, 0xB5,
0x77, 0xB7, 0xB6, 0x76, 0x72, 0xB2, 0xB3, 0x73, 0xB1, 0x71, 0x70, 0xB0, 0x50, 0x90, 0x91,
0x51, 0x93, 0x53, 0x52, 0x92, 0x96, 0x56, 0x57, 0x97, 0x55, 0x95, 0x94, 0x54, 0x9C, 0x5C,
0x5D, 0x9D, 0x5F, 0x9F, 0x9E, 0x5E, 0x5A, 0x9A, 0x9B, 0x5B, 0x99, 0x59, 0x58, 0x98, 0x88,
0x48, 0x49, 0x89, 0x4B, 0x8B, 0x8A, 0x4A, 0x4E, 0x8E, 0x8F, 0x4F, 0x8D, 0x4D, 0x4C, 0x8C,
0x44, 0x84, 0x85, 0x45, 0x87, 0x47, 0x46, 0x86, 0x82, 0x42, 0x43, 0x83, 0x41, 0x81, 0x80,
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));
}
?>
2
sukitsupaluk at hotmail dot com
13 年前
將 crc32 轉換為字元映射的小範例

<?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)

*/

?>
1
chernyshevsky at hotmail dot com
14 年前
petteri at qred dot fi 提供的 crc32_combine() 函數存在一個錯誤,會導致無限迴圈,因為對一個 32 位元的帶號整數進行位移操作可能永遠不會達到零。將函數 gf2_matrix_times() 替換為以下程式碼似乎可以修正此問題。

<?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;
}
?>

否則,如果您無法使用 hash_file(),這可能是最好的解決方案。在我的測試中,使用 1MB 的讀取緩衝區,此函數處理 300MB 的檔案僅比 hash_file() 多花兩倍的時間。
1
berna (at) gensis (dot) com (dot) br
15 年前
對於那些希望函數返回更熟悉的值的人

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

並以十六進位字串顯示結果

<?php
function int32_to_hex($value) {
$value &= 0xffffffff;
return
str_pad(strtoupper(dechex($value)), 8, "0", STR_PAD_LEFT);
}
?>
1
arris at zsolttech dot com
13 年前
找不到任何基於 http://bioinfadmin.cs.ucl.ac.uk/downloads/crc64/crc64.c 的 crc64。

(使用 gmp 模組)

<?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(INITIALCRC, 16);
$init = FALSE;
$poly64rev = gmp_init(POLY64REV, 16);

if (!
$init)
{
$init = TRUE;
for (
$i = 0; $i < TABLELEN; $i++)
{
$part = gmp_init($i, 10);
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($crc, self::$CRCTable[gmp_strval($tableindex, 10)]);
}

$res = gmp_strval($crc, 16);

return
$res;
}
}
} else {
die(
"Please install php-gmp package!!!");
}
?>
1
quix at free dot fr
21 年前
我需要一個非常大的檔案的 crc32,所以我不想將其讀入記憶體。
所以我做了這個

<?php
$GLOBALS
['__crc32_table']=array(); // 查找表陣列
__crc32_init_table();

function
__crc32_init_table() { // 建立查找表陣列
// 這是 PKZip、WinZip 和乙太網路中 CRC-32 使用的官方多項式。
$polynomial = 0x04c11db7;

// 256 個代表 ASCII 字元碼的值。
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] & (1 << 31))?$polynomial:0));
}
$GLOBALS['__crc32_table'][$i] = __crc32_reflect($GLOBALS['__crc32_table'][$i], 32);
}
}

function
__crc32_reflect($ref, $ch) { // 反射查找表中的 CRC 位元
$value=0;

// 交換位元 0 和位元 7、位元 1 和位元 6,依此類推。
for($i=1;$i<($ch+1);++$i) {
if(
$ref & 1) $value |= (1 << ($ch-$i));
$ref = (($ref >> 1) & 0x7fffffff);
}
return
$value;
}

function
__crc32_string($text) { // 從文字字串建立 CRC
// 一旦查找表被以上兩個函數填滿,
// 這個函數只使用查找表建立所有 CRC。

// 你需要無符號變數,因為負值
// 會在需要零位元的地方引入高位元。
// PHP 沒有無符號整數:
// 我通過在 '>>' 之後執行 '&' 來解決這個問題。

// 從所有位元都設定為高位元開始。
$crc=0xffffffff;
$len=strlen($text);

// 對字串中的每個字元執行演算法,
// 使用查找表中的值。
for($i=0;$i < $len;++$i) {
$crc=(($crc >> 8) & 0x00ffffff) ^ $GLOBALS['__crc32_table'][($crc & 0xFF) ^ ord($text{$i})];
}

// 將結果與起始值進行互斥或運算。
return $crc ^ 0xffffffff;
}

function
__crc32_file($name) { // 從檔案建立 CRC
// 資訊:請參閱 __crc32_string

// 從所有位元都設定為高位元開始。
$crc=0xffffffff;

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

// 對檔案中的每個字元執行演算法
for(;;) {
$i=@fread($fp,1);
if(
strlen($i)==0) break;
$crc=(($crc >> 8) & 0x00ffffff) ^ $GLOBALS['__crc32_table'][($crc & 0xFF) ^ ord($i)];
}

@
fclose($fp);

// 將結果與起始值進行互斥或運算。
return $crc ^ 0xffffffff;
}
?>
1
Ren
17 年前
處理 32 位元無符號值溢出 32 位元 php 有符號值,可以通過在任何意外的負數結果中加上 0x10000000,而不是使用 sprintf 來完成。

$i = crc32('1');
printf("%u\n", $i);
if (0 > $i)
{
// 隱式地將 i 轉換為浮點數,並修正此符號。
$i += 0x100000000;
}
var_dump($i);

輸出

2212294583
float(2212294583)
0
dotg at mail dot ru
7 年前
在某些值上,php 32 位元和 64 位元上的 crc32() 不相等

我對 32 位元的結果使用 abs 取得正數

不相等
<?=abs(crc32(1));?>
64 位元
2212294583
32 位元
2082672713

相等
<?=abs(crc32(3));?>
64 位元
1842515611
32 位元
1842515611
0
toggio at writeme dot com
8 年前
更快的 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;
}
-1
mail at tristansmis dot nl
17 年前
我在 32 位元系統上使用了此函數的絕對值。當將程式碼移植到 64 位元系統時,我發現該值不同。以下程式碼在兩個系統上都有相同的結果。
<?php

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

/* 舊的解決方案
* $crc = abs(crc32($string))
*/

?>
-2
gabri dot ns at gmail dot com
14 年前
如果您正在尋找用於雜湊檔案的快速函數,請查看
https://php.dev.org.tw/manual/en/function.hash-file.php
這是基於 CRC32 指南的 crc32 檔案檢查器
在我的 2.2GHz Turion 上,它的效能約為 ~ 625 KB/s
遠比 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 = 1 << 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($str, 32, '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";
?>
輸出
ec7369fe
2.384134054184 (或類似)
To Top