計算"Hello" 的soundex 鍵:
<?php$str = "Hello";echo soundex($str);?>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);?>