【函数功能】
该函数计算字符串的soundex键:soundex键是4字符长的字母数字字符串,表示单词的英文发音。
【函数语法】
soundex ($str)
【参数说明】
$str:必需,要检查的字符串。
【演示程序】
<?php
/**
* soundex ($str)
* **/
$str = "hello php1234.cn";
echo soundex($str);
echo '<br>';
echo soundex('大家好,我是PHP1234.CN');
?>
【输出结果】
H411
P125
【特别注意】
1.该函数可用于拼写检查应用程序。
2.该函数为发音相似的单词创建相同的键。
3.metaphone() 比soundex()函数更精确,因为 metaphone()了解英语发音的基本规则。
4.PHP 版本:4+。
【原版定义】
/**
* Calculate the soundex key of a string
* @link http://www.php.net/manual/en/function.soundex.php
* @param str string <p>
* The input string.
* </p>
* @return string the soundex key as a string.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2016/1118/134.html