over 9 years ago
There are different methods to check two text strings are equal or not in PHP. This article defines the methods which can be used for comparing two text strings.
1. '==' : == operator is most commonly used operator for comparing two strings. If the text of both strings are same, it returns TRUE, otherwise returns FALSE.
Output : Matched
2. strcmp() : strcmp() is a built-in function in PHP, which is used to compare two strings. strcmp() function is used to perform binary safe string comparison. It returns the integer value as a result which defines the following cases :
Example 1:
Output : 0
Example 2:
Output : 8
The above two methods compare strings in case-sensitive manner, PHP also provides strcasecmp() function to compare strings in case-insensitive manner. strcasecmp() returns the same results like strcmp().
Example : a. Case-sensitive comparison
Output : -32
b. Case-insensitive comparison
Output : 0
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)