soundex() 函数计算字符串的 soundex 键。
soundex 键是 4 字符长的字母数字字符串,表示单词的英文发音。
soundex() 函数可用于拼写检查应用程序。
注释:soundex() 函数为发音相似的单词创建相同的键。
提示:metaphone() 比 soundex() 函数更精确,因为 metaphone() 了解英语发音的基本规则。
soundex(string)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
返回值: | 如果成功则返回字符串的 soundex 键,如果失败则返回 FALSE。 |
PHP 版本: | 4+ |
对两个发音相似的单词使用 soundex() 函数:
<?php $str = "Assistance"; $str2 = "Assistants"; echo soundex($str); echo "<br>"; echo soundex($str2); ?>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号