我需要使用PHP获取文件的CRC64校验和.
有了这段代码
file_put_contents('example.txt', 'just an example');
echo hash_file('crc32', 'example.txt');
我得到CRC32校验和“c8c429fe”;
但我需要使用CRC64算法得到校验和(
)
我从这里拿走了它:http://en.wikipedia.org/wiki/Cyclic_redundancy_check
如何在PHP中实现此散列算法?
解决方法:
在PHP 64bit上实现crc64()
http://www.php.net/manual/en/function.crc32.php#111699