目录

PHP md5_file() 函数

❮ PHP 字符串参考

示例

计算文本文件"test.txt"的MD5哈希值:

<?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 "指纹" or "消息摘要" of the input. The MD5 algorithm is intended for digital signature applications, where a large file must be "压缩" 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)

参数值

Parameter Description
file Required. The file to be calculated
raw Optional. A boolean value that specifies hex or binary output format:
  • TRUE - Raw 16 character binary format
  • FALSE - Default. 32 character hex number


技术细节

返回值: 成功时返回计算出的 MD5 哈希值,失败时返回 FALSE
PHP 版本: 4.2.0+
变更日志: 这个生的PHP 5.0 中添加了参数

从 PHP 5.1 开始,可以将 md5_file() 与包装器一起使用,例如md5_文件("https://91xjr.com/..")

更多示例

示例

将 "test.txt" 的 MD5 哈希值存储在文件中:

<?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 字符串参考