<?php
$filename = 'fungj.txt'; //文件路径
$str = file_get_contents($filename); //获取文件里的内容到$str
$hash = 2; //设置HASH值
$password = '111'; //设置变量$password
$salt = '1234'; //设置变量$salt
$key = mhash_keygen_s2k(1,$password,$salt,10); //生成KEY值
$str_mhash = bin2hex(mhash($hash,$str,$key)); //使用$key值、$hash值对字符串$str加密
echo "文件fungj.txt的MD5校验码是:".$str_mhash; //输出校验码
?>
最后修改:2015 年 09 月 08 日
© 允许规范转载