STRCASECMP () function
Definition: the strcasecmp () function compares two strings.
Syntax: strcasecmp (STRING1,STRING2);
Parameter list
Parameters |
Description |
String1 |
Necessary. Specifies the first string to compare. |
string2 |
Necessary. Specifies a second string to compare. |
return value Condition:
return Value: |
the function returns: |
equals 0 |
|
Less than 0 |
If string1 is less than string2
|
Greater than 0 |
If string1 is greater than string2
|
PHP version |
4 + |
STRNCASECMP () function
Definition: the strcasecmp () function compares two strings.
Syntax: strncasecmp (string1,string2,length);
Parameter list
Parameters |
Description |
String1 |
Necessary. Specifies the first string to compare. |
string2 |
Necessary. Specifies a second string to compare. |
Length |
Necessary. Specifies the number of characters each string is used to compare. |
return value Condition:
return Value: |
the function returns: |
equals 0 |
|
Less than 0 |
If string1 is less than string2
|
Greater than 0 |
If string1 is greater than string2
|
PHP version |
4 + |
Note: The difference between the strcasecmp () function and the strncasecmp () function is that strncasecmp () has more than one specified length of the comparison character number on the parameter.
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
The above describes the PHP strcasecmp and STRNCASECMP functions, including the aspects of the content, I hope that the PHP tutorial interested in a friend helpful.