计算字符串的MD5哈希值

时间:2015-05-05 08:40:49

标签: php

<?php
    function renewCode( $schoolName, $certId, $barcode, $indate ){
       return strtoupper( substr( md5( $schoolName.$certId.$barcode.$indate ), 3, 8 ) );
   }
?>

我不了解MD5()的功能。我的意思是我知道学校名称和所有数据,但我无法得到正确的回报

例如:

正确的回报:19B55890

Md5加密字符串&#34; xxxxxxxx.xxxxxxxxx.01187422.2013-03-20&#34;

   CBBDFC8D228B7FCFECCFC54FBB3C9D87

它不等于19B55890

0 个答案:

没有答案