PHP string similar_text() Function

The string similar_text() function is in-built PHP function. It is used to calculates the similarity between two strings in percent.

Note: The Levenshtein() function is faster than similar_text() function. It will give us more accurate result.

Syntax:

ParameterDescriptionRequired/Optional
String 1Specify the first string to be compared.required
String 2Specify the first string to be compared.required
percentSpecify a variable name for storing.Optional

Example 1

Output:

6

Example 2

Output:

48

Next TopicPHP String




Latest Courses