php similar_text函數怎麼用

2020-07-16 10:05:36
php similar_text函數用於計算兩個字串的相似度,並返回匹配字元的數目,其語法是similar_text(string1,string2,percent)。

php similar_text函數怎麼用?

作用:計算兩個字串的相似度,並返回匹配字元的數目。

語法:

similar_text(string1,string2,percent)

引數:

string1 必需。規定要比較的第一個字串。

string2 必需。規定要比較的第二個字串。

percent 可選。規定供儲存百分比相似度的變數名。

說明:

函數也能計算兩個字串的百分比相似度。

php similar_text()函數使用範例1

<?php
echo similar_text("Hello World","Hello php.cn");
?>

輸出:

6

php similar_text()函數使用範例2

<?php
echo similar_text("phpstudy","tomcat");
?>

輸出:

1

以上就是php similar_text函數怎麼用的詳細內容,更多請關注TW511.COM其它相關文章!