PHP soundex() 函数 PHP similar_text() 函数 PHP sprintf() 函数 PHP soundex() 函数 实例 计算 "Hello" 的 soundex 键: <?php $str = "Hello"; echo soundex($str); ?> 定义和用法 soundex() 函数计算字符串的 soundex 键。 soundex 键是 4 字符长的字母数字字符串,表示一个单词的英文发音。 soundex() 函数可用于拼写检查程序。 注释: soundex() 函数为发音相似的单词创建相同的键。 提示: metaphone() 比 soundex() 函数更精确,因为 metaphone() 了解英语发音的基本规则。 语法 soundex( _string_ ) 参数 描述 _string_ 必需。规定要检查的字符串。 技术细节 返回值: 如果成功则返回字符串的 soundex 键,如果失败则返回 FALSE。 PHP 版本: 4+ 实例 1 对两个发音相似的单词使用 soundex() 函数: <?php $str = "Assistance"; $str2 = "Assistants"; echo soundex($str); echo "<br>"; echo soundex($str2); ?> PHP similar_text() 函数 PHP sprintf() 函数