我需要用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中实现此散列算法?
最佳答案
实现crc64(a)是php64位
http://www.php.net/manual/en/function.crc32.php#111699