(PHP 4, PHP 5, PHP 7)
md5 — 计算字符串的 MD5 散列值
It is not recommended to use this function to secure passwords, due to the fast nature of this hashing algorithm. See the Password Hashing FAQ for details and best practices.
$str
[, bool $raw_output
= false
] )
使用 » RSA 数据安全公司的 MD5 报文算法计算 str
的 MD5 散列值。
str
原始字符串。
raw_output
如果可选的 raw_output
被设置为 TRUE
,那么 MD5 报文摘要将以16字节长度的原始二进制格式返回。
以 32 字符十六进制数字形式返回散列值。
Example #1 md5() 范例
<?php
$str = 'apple';
if (md5($str) === '1f3870be274f6c49b3e31a0c6728957f') {
echo "Would you like a green or red apple?";
}
?>