PHP md5_file() 函数


PHP String 函数

定义和用法

md5_file() 函数计算文件的 MD5 散列。

md5() 函数使用 RSA 数据安全,包括 MD5 报文摘译算法。

如果成功,则返回所计算的 MD5 散列,如果失败,则返回 false。

语法

md5(string,raw)

参数 描述
string 必需。规定要计算的文件。
charlist

可选。规定十六进制或二进制输出格式:

  • TRUE - 原始 16 字符二进制格式
  • FALSE - 默认。32 字符十六进制数

注释:该参数是 PHP 5.0 中添加的。



例子

例子 1

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

输出:

5d41402abc4b2a76b9719d911017c592

例子 2

存储 "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 String 函数
粤ICP备11097351号-1