我怎么能写MD5。要在php中重写

时间:2013-07-17 05:26:53

标签: php md5

这是代码plz帮助我谢谢

    public static string CalculateMD5Hash(string strInput)
    {
        MD5 md5 = System.Security.Cryptography.MD5.Create();
        byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(strInput);
        byte[] hash = md5.ComputeHash(inputBytes);

        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < hash.Length; i++)
        {
            sb.Append(hash[i].ToString("x2"));
        }
        return sb.ToString();
    }

1 个答案:

答案 0 :(得分:1)

您可以使用md5()

<?php
    function CalculateMD5Hash($strInput){
       return md5($strInput);
    }
?>