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