PHP soundex() 函數
PHP soundex() 函數
定義和用法
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);
?>
$str = "Assistance";
$str2 = "Assistants";
echo soundex($str);
echo "<br>";
echo soundex($str2);
?>
運行實例 ?

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