md5() 函数计算字符串的 MD5 哈希值。
md5() 函数使用 RSA Data Security, Inc. MD5 消息摘要算法。
来自 RFC 1321 - MD5 消息摘要算法:"The MD5 message-digest algorithm takes as input a message of arbitrary length and produces as output a 128-bit "指纹" or "消息摘要" of the input. The MD5 algorithm is intended for digital signature applications, where a large file must be "压缩" in a secure manner before being encrypted with a private (secret) key under a public-key cryptosystem such as RSA."
要计算文件的 MD5 哈希值,请使用md5_文件()功能。
md5(
string,raw)
Parameter | Description |
---|---|
string | Required. The string to be calculated |
raw | Optional. Specifies hex or binary output format:
|
返回值: | 成功时返回计算出的 MD5 哈希值,失败时返回 FALSE |
---|---|
PHP 版本: | 4+ |
变更日志: | 这个生的PHP 5.0 中参数变为可选 |
打印 md5() 的结果:
<?php
$str = "Hello";
echo "The string: ".$str."<br>";
echo "TRUE - Raw 16 character binary format: ".md5($str, TRUE)."<br>";
echo "FALSE - 32 character hex number: ".md5($str)."<br>";
?>
亲自试一试 »
打印md5()的结果然后测试:
<?php
$str = "Hello";
echo md5($str);
if (md5($str) == "8b1a9953c4611296a827abf8c47804d7")
{
echo "<br>Hello world!";
exit;
}
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!