定義と使用法
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 "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 | 任意。 進またはバイナリの出力フォーマットを指定します。
|
技術的な詳細
戻り値: | 成功した場合に計算された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の文字列のリファレンス