php計算字串的soundex鍵函數soundex()

來源:互聯網
上載者:User

執行個體

計算 "Hello" 的 soundex 鍵:

<?php$str = "Hello";echo soundex($str);?>

定義和用法

soundex() Function Compute字串的 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" 分割到數組中:

<?phpprint_r(str_split("Shanghai"));?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.