php levenshtein()函數
翻譯結果:
[人名] 利文;[地名] [英國] 利文
php levenshtein()函數語法
功能:計算兩個字串之間的編輯距離
語法:int levenshtein ( string $str1 , string $str2 , int $cost_ins ,$cost_ins , int $cost_rep , int $cost_del )
#參數:
參數 | |
求編輯距離中的其中一個字串。 | |
#求編輯距離中的另一個字串。 |
cost_rep ######定義替換次數。 ############cost_del ######定義刪除次數###################說明:###編輯距離,是指兩個字符串之間,透過替換、插入、刪除等操作將字串str1轉換成str2所需操作的最少字元數。 ###
php levenshtein()函數範例
輸出:
4
<?php $str1 = "Learning PHP"; $str2 = "is a good choise"; echo levenshtein($str1,$str2); ?>
#執行實例»
點擊"運行實例" 按鈕查看線上實例
輸出:
14