PHP soundex() 函數(shù)
PHP soundex() 函數(shù)
定義和用法
soundex() 函數(shù)計(jì)算字符串的 soundex 鍵。
soundex 鍵是 4 字符長的字母數(shù)字字符串,表示一個(gè)單詞的英文發(fā)音。
soundex() 函數(shù)可用于拼寫檢查程序。
注釋:soundex() 函數(shù)為發(fā)音相似的單詞創(chuàng)建相同的鍵。
提示: metaphone() 比 soundex() 函數(shù)更精確,因?yàn)?metaphone() 了解英語發(fā)音的基本規(guī)則。
語法
soundex(string)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回字符串的 soundex 鍵,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更多實(shí)例
實(shí)例 1
對兩個(gè)發(fā)音相似的單詞使用 soundex() 函數(shù):
<?php
$str = "Assistance";
$str2 = "Assistants";
echo soundex($str);
echo "<br>";
echo soundex($str2);
?>
$str = "Assistance";
$str2 = "Assistants";
echo soundex($str);
echo "<br>";
echo soundex($str2);
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 數(shù)組排序
- PHP 多維數(shù)組
- PHP Session
- PHP JSON
- PHP array_combine() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP ksort() 函數(shù)
- PHP list() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Filter 函數(shù)