PHP strnatcasecmp() Function
Last Updated :
22 Jun, 2023
Improve
The strnatcasecmp() function is a built-in function in PHP which compares this string using "natural order" algorithm. This function accepts two strings as parameter and returns an integer value (positive, negative or zero ). This function is similar to strnatcmp() with the only difference being the case-insensitivity of the function.
Syntax:
php
Output
php
Output
strnatcasecmp( $string1, $string2 )Parameters: The function accepts two mandatory string parameters as shown in the above syntax. These parameters are defined below :
- $string1: This parameter specifies the first string to be compared.
- $string2: This parameter specifies the second string to be compared.
- Returns 0 if the two strings are equal
- Returns a positive value (>0) if the $string1 is greater than $string2.
- Returns a negative value (<0) if the $string1 is less than $string2.
Input : $string = "Geek", $string2 = "GEEK" Output : 0 Input : $string = "Geeks", $string2 = "Geek" Output : 1Below programs illustrate the strnatcasecmp() function: Program 1: This program illustrates simple use of the strnatcasecmp() function.
<?php
echo strnatcasecmp("Geeks", "Geek");
?>
1Program 2: This program illustrates case-insensitivity of the strnatcasecmp() function.
<?php
// Case-insensitive strnatcasecmp() function
echo strnatcasecmp("Geeks", "GEEKS");
echo "\n";
// Case-sensitive strnatcmp() function
echo strnatcmp("Geeks", "GEEKS");
?>
0 1