最新的Web开发教程
 

PHP md5() Function

<PHP字符串参考

计算字符串的MD5散列"Hello"

<?php
$str = "Hello";
echo md5($str);
?>
运行示例»

定义和用法

md5()函数计算字符串的MD5哈希。

md5()函数使用RSA数据安全公司MD5消息摘要算法。

从RFC 1321 -的MD5消息摘要算法: "The MD5 message-digest algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. The MD5 algorithm is intended for digital signature applications, where a large file must be "compressed" in a secure manner before being encrypted with a private (secret) key under a public-key cryptosystem such as RSA."

要计算文件的MD5散列,使用md5_file()函数。


句法

md5( string,raw )

参数 描述
string 需要。 要计算的字符串
raw 可选的。 指定十六进制或二进制输出格式:
  • TRUE - 原始16字符二进制格式
  • FALSE - 默认。 32字符十六进制数

技术细节

返回值: 成功则返回计算MD5哈希值,失败返回FALSE
PHP版本: 4+
更新日志: 原始参数在PHP 5.0起成为可选项

更多示例

实施例1

打印结果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>";
?>
运行示例»

实施例2

打印结果md5()并对其进行测试:

<?php
$str = "Hello";
echo md5($str);

if (md5($str) == "8b1a9953c4611296a827abf8c47804d7")
  {
  echo "<br>Hello world!";
  exit;
  }
?>
运行示例»

<PHP字符串参考