PHP strnatcmp () function "Natural Sorting algorithm" for string comparison usage analysis (contrast strcmp function), strnatcmpstrcmp_php tutorial

Source: Internet
Author: User
Tags strcmp

PHP strnatcmp () function "Natural Sorting algorithm" for string comparison usage analysis (contrast strcmp function), strnatcmpstrcmp


This example describes the use of the STRNATCMP () function "Natural sorting algorithm" in PHP for string comparison. Share to everyone for your reference, as follows:

The strnatcmp () function in PHP uses a "natural" algorithm to compare two strings (case-sensitive), usually in natural algorithms, where the number 2 is less than the number 10. In the computer sort, 10 is less than 2, because the first number in 10 is less than 2.

The strnatcmp () function is defined as follows:

STRNATCMP (STRING1,STRING2)

Parameter description:

String1 required. Specifies the first string to compare.
string2 required. Specifies a second string to compare.

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:

<?php $str 1= "2.jpg"; $str 2= "10.jpg"; $str 3= "Jb51.net_1"; $str 4= "Jb51.net_2"; Echo strcmp ($str 1, $str 2);//Compare by Byte, return 1 echo "
"; Echo strcmp ($str 3, $str 4);//Compare by Byte, return 1 echo "
"; Echo strnatcmp ($str 1, $str 2);//Compare by "natural sort" method, return-1 echo "
"; Echo strnatcmp ($str 3, $str 4);//Compare by "natural sort" method, return 1?>

The results of the operation are as follows:

11-11

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
    • PHP strncmp () function compares the first 2 characters of a two string method
    • 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/1089577.html www.bkjia.com true http://www.bkjia.com/PHPjc/1089577.html techarticle php strnatcmp () function "Natural Sorting algorithm" for string comparison usage analysis (compared to strcmp function), strnatcmpstrcmp This article describes the STRNATCMP () function in PHP "Natural sorting algorithm ...

  • Related Article

    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.