PHP strncmp () function compares the first 2 characters of two strings for equality, PHPSTRNCMP
This example describes how PHP strncmp () function compares the first 2 characters of a two string. Share to everyone for your reference, as follows:
The strncmp () function in PHP is used to compare two strings (case-sensitive) to determine whether the first n characters of the two strings are equal.
The strncmp () function is defined as follows:
STRNCMP (String1,string2,length)
Parameter description:
String1 required. Specifies the first string to compare.
string2 required. Specifies a second string to compare.
Length required. Specifies the number of characters for each string used in the comparison.
Return Value Description:
If two strings are equal, the return value is 0
If string1 is less than string2, the return value is less than 0
If string1 is greater than string2, the return value is greater than 0
The sample code is as follows:
The <?php/* strncmp () function compares the first n characters of two strings for equality * * Return value: 0-if two strings are equal <0-if string1 is less than string2 >0-if string1 is greater than string2 */$str 1= "Welcome to Www.jb51.net"; $str 2= "WELCOME to WWW.JB51.NET"; $str 3= "Welcome to PHP"; Echo strncmp ($str 1, $str 2,2); echo "
"; Echo strncmp ($str 1, $str 3,2);? >
The results of the operation are as follows:
10
Read more about PHP string operations for more information on this site: PHP string Usage Summary
I hope this article is helpful to you in PHP programming.
Articles you may be interested in:
- How the Substr_count () function Gets the number of substrings in PHP
- PHP uses the STRSTR () function to obtain a method for all characters after a specified string
- STRNATCMP () function "Natural sorting algorithm" in PHP for string comparison usage analysis (compare strcmp function)
- strcmp () and strcasecmp () function strings in PHP comparison usage analysis
- Analysis of substr function string interception usage in PHP
- PHP uses Trim function to remove left and right spaces and special character instances
- PHP encapsulated string encryption and decryption function
- The most accurate PHP intercept string length function
- What to do if you use substr () in PHP to intercept strings in Chinese characters.
- Summary of examples of PHP common string manipulation functions
http://www.bkjia.com/PHPjc/1089575.html www.bkjia.com true http://www.bkjia.com/PHPjc/1089575.html techarticle php strncmp () function compares the first 2 characters of the two strings are equal, phpstrncmp This example tells the PHP strncmp () function to compare two strings before the 2 characters are equal ...