PHP md5_file() 函数

定义和用法

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

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

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

语法

md5(_string_,_raw_)
参数 描述
string 必需。规定要计算的文件。
raw 可选。规定十六进制或二进制输出格式: 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.

定义和用法

metaphone() 函数计算字符串的 metaphone 键。

metaphone 键字符串的英语发音。

metaphone() 函数可用于拼写检查应用程序。

如果成功,则返回字符串的 metaphone 键,如果失败,则返回 false。

语法

metaphone(string,length)
参数 描述
string 必需。规定要检查的字符串。
length 可选。规定 metaphone 键的最大长度。

提示和注释

注释:metaphone() 为发音相似的单词创建相同的键。

注释:所生成的 metaphone 键长度可变。

提示:metaphone() 比 soundex() 函数更精确,因为 metaphone() 了解基本的英语发音规则。

例子

例子 1

<?php
echo metaphone("world");
?>

输出:

WRLT

例子 2

在本例中,我们对两个发音相似的单词应用 metaphone() 函数:

<?php
$str = "Sun";
$str2 = "Son";

echo metaphone($str);
echo metaphone($str2);
?>

输出:

SN
SN