Home > php教程 > php手册 > php md5 与md5_file区别详细说明

php md5 与md5_file区别详细说明

WBOY
Release: 2016-06-13 09:54:49
Original
1835 people have browsed it

md5($str) 给字符串进行哈希加密

实例
*/
$str="hello world";          //定义字符串
$result=md5($str);          //执行加密操作
echo $result;           //输出转换后的结果

//md5_file( $filepath) 对文件内容进行哈希加密

$file="test.txt";           //定义文件
$result=md5_file($file);         //执行计算操作
echo $result;           //输出计算后的结果

/*

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

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

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

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template