最新的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字符串參考