The strncmp () function that compares the first n characters of two strings in PHP for equality is used

Source: Internet
Author: User
Tags first string
PHP strncmp () function compares the first n characters of two strings for equality,

The function of strncmp () function, parameter usage and use skill are analyzed.

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:

 
  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

I hope this article is helpful to you in PHP programming.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.