摘要: PHP版:Perl:# 需要先安装 String::CRC32use String::CRC32;sub getCrc{ open my $fd , '<' , $filepath or die("error"); my $crc2 = crc32($fd); my $crc_out = sprintf("%x", $crc2); print uc($crc_out) ; } 阅读全文
posted @ 2013-08-14 17:35 ifeixiang 阅读(627) 评论(0) 推荐(0) 编辑