例
テキストファイルのMD5ハッシュ計算"test.txt" :
<?php
$filename = "test.txt";
$md5file = md5_file($filename);
echo $md5file;
?>
上記のコードの出力は次のようになります。
d41d8cd98f00b204e9800998ecf8427e
定義と使用法
md5_file()関数は、ファイルのMD5ハッシュを計算します。
md5_file()関数では、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()関数を。
構文
md5_file( file,raw )
パラメーター | 説明 |
---|---|
file | 必須。 ファイルが計算されます |
raw | 任意。 ヘキサまたはバイナリ出力形式を指定するブール値。
|
技術的な詳細
戻り値: | 成功した場合に計算されたMD5ハッシュを返し、失敗した場合にFALSE |
---|---|
PHPバージョン: | 4.2.0+ |
変更履歴: | 生パラメータはPHP 5.0で追加されました PHP 5.1の時点で、それを使用することが可能であるmd5_file()のラッパーで、例えばmd5_file("http://w3ii.com/..") |
その他の例
例1
MD5ハッシュ保管してください"test.txt"ファイルの中に:
<?php
$md5file = md5_file("test.txt");
file_put_contents("md5file.txt",$md5file);
?>
テストする場合"test.txt" (MD5ハッシュが変更された場合には)変更されています。
<?php
$md5file = file_get_contents("md5file.txt");
if (md5_file("test.txt") == $md5file)
{
echo "The file is ok.";
}
else
{
echo "The file has been changed.";
}
?>
上記のコードの出力は次のようになります。
The file is ok.
<PHPの文字列のリファレンス