實例
計算"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); ?>
把字串"Shanghai" 分割到陣列中:
<?php print_r(str_split("Shanghai")); ?>
以上是php計算字串的soundex鍵函數soundex()的詳細內容。更多資訊請關注PHP中文網其他相關文章!