目录

PHP md5() 函数

❮ PHP 字符串参考

示例

计算字符串"Hello"的MD5哈希值:

<?php
$str = "Hello";
echo md5($str);
?>
亲自试一试 »

定义和用法

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:
  • TRUE - Raw 16 character binary format
  • FALSE - Default. 32 character hex number


技术细节

返回值: 成功时返回计算出的 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;
  }
?>
亲自试一试 »

❮ PHP 字符串参考