Home  >  Article  >  Backend Development  >  Definition and usage of php similar_text() function

Definition and usage of php similar_text() function

高洛峰
高洛峰Original
2017-01-03 14:34:271365browse

php similar_text() function calculates and compares the similarity of two strings. This article introduces the basic usage method and basic usage examples of php similar_text() function to coders. Interested coders can refer to it.

Definition and usage

similar_text() function calculates the similarity of two strings.

This function can also calculate the percentage similarity of two strings.

Note: levenshtein() function is faster than similar_text() function. However, the similar_text() function provides more accurate results with fewer modifications required.

Grammar

similar_text(string1,string2,percent)

php similar_text()函数的定义和用法

Technical details

php similar_text()函数的定义和用法

##Examples

Calculate the percentage similarity between two strings:

<?phpsimilar_text("Hello World","Hello Shanghai",$percent);echo $percent. "%";?>

The definition and usage of the above php similar_text() function are shared by the editor I’ve given you all the content, I hope it can give you a reference, and I hope you will support the PHP Chinese website.

For more articles related to the definition and usage of the php similar_text() function, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn