请输入您要查询的百科知识:

 

词条 md5_file
释义

定义和用法

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

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

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

语法

md5(string,raw)注释:该参数是 PHP 5.0 中添加的。

参数 描述

string 必需。规定要计算的文件。

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

TRUE - 原始 16 字符二进制格式

FALSE - 默认。32 字符十六进制数

例子 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 函数

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 21:32:25