Phpsimilar_text (), phpsimilar_text. Phpsimilar_text () and phpsimilar_textphpsimilar_text () functions calculate and compare the similarity between the two strings. This article introduces the basic usage of phpsimilar_text () functions and the basic php similar_text () and phpsimilar_text
The php similar_text () function is used to calculate and compare the similarity between two strings. This article introduces the basic usage and basic use examples of the php similar_text () function to the coders, for more information, see.
Definition and usage
The similar_text () function computes the similarity between two strings.
This function can also calculate the percentage similarity between two strings.
Note: The levenshtein () function is faster than the similar_text () function. However, the similar_text () function provides more accurate results with fewer necessary modifications.
Syntax
similar_text(string1,string2,percent)
Parameters |
Description |
String1 |
Required. Specifies the first string to be compared. |
String2 |
Required. Specifies the second string to be compared. |
Percent |
Optional. Specifies the name of the variable that stores the percentage similarity. |
Technical details
Return value: |
Returns the number of matching characters for two strings. |
PHP version: |
4 + |
Instance
Calculate the percentage similarity between two strings:
Online operation
Address: http://www.manongjc.com/article/805.html
Php-related learning:
- Php operators
- Php expressions
- PHP loop control
- PHP process control
- Php array
- Php functions
- Php global variables
- PHP magic variable
- Php namespace
The http://www.bkjia.com/PHPjc/1125678.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1125678.htmlTechArticlephp similar_text (), phpsimilar_text php similar_text () function is used to calculate and compare the similarity between two strings. This article introduces the basic usage and basic of php similar_text () function to the coders...