最新的Web開發教程
 

PHP md5_file() Function

<PHP字符串參考

計算文本文件的MD5哈希"test.txt"

<?php
$filename = "test.txt";
$md5file = md5_file($filename);
echo $md5file;
?>

代碼的輸出將是:

d41d8cd98f00b204e9800998ecf8427e


定義和用法

md5_file()函數計算文件的MD5哈希值。

所述md5_file()函數使用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()函數。


句法

md5_file( file,raw )

參數 描述
file 需要。 要計算的文件
raw 可選的。 一個布爾值,它指定十六進制或二進制輸出格式:
  • TRUE - 原始16字符二進制格式
  • FALSE - 默認。 32字符十六進制數

技術細節

返回值: 成功則返回計算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字符串參考