PHP metaphone() 函数

实例

计算 "World" 的 metaphone 键:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo metaphone("Computer");
  6. ?>
  7. </body>
  8. </html>

定义和用法

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

metaphone 键代表字符串的英语发音。

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

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

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

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


语法

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

技术细节

返回值:如果成功则返回字符串的 metaphone 键,如果失败则返回 FALSE。
PHP 版本:4+

更多实例

例子 1

对两个发音相似的单词使用 metaphone() 函数:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = "Assistance";
  6. $str2 = "Assistants";
  7. echo metaphone($str);
  8. echo "<br>";
  9. echo metaphone($str2);
  10. ?>
  11. </body>
  12. </html>
例子 2

使用 length 参数:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = "Assistance";
  6. $str2 = "Assistants";
  7. echo metaphone($str,5);
  8. echo "<br>";
  9. echo metaphone($str2,5);
  10. ?>
  11. </body>
  12. </html>

分类导航