search
HomeBackend DevelopmentPHP TutorialThe difference between PHP strcmp, strnatcmp, and strncmp functions, strnatcmpstrncmp_PHP tutorial

The difference between PHP strcmp, strnatcmp, strncmp functions, strnatcmpstrncmp

String comparison instructions
When s1
When s1=s2, return value = 0
When s1>s2, return positive number

<span> 1</span> <?<span>php
</span><span> 2</span> <span>$str1</span> = 'str100'<span>;
</span><span> 3</span> <span>$str2</span> = 'str20'<span>;
</span><span> 4</span> <span>echo</span> <span>strcmp</span>(<span>$str1</span>, <span>$str2</span>)."<br>"<span>;
</span><span> 5</span> <span>//输出</span><span>-1</span>
<span> 6</span> <span>echo</span> <span>strnatcmp</span>(<span>$str1</span>, <span>$str2</span>)."<br>"<span>;
</span><span> 7</span> <span>//输出</span><span>1</span>
<span> 8</span> <span>echo</span> <span>strncmp</span>(<span>$str1</span>, <span>$str2</span>, 5)."<br>"<span>;
</span><span> 9</span> <span>//输出</span><span>-1</span>
<span>10</span> 
<span>11</span> ?>

The strcmp(str1, str2) function compares two strings according to characters, that is, the two strings are compared character by character from left to right (compared according to the ASCII value) until different characters appear or '

The strnatcmp(str1, str2) function uses the natural sorting algorithm to compare strings. This function implements a comparison algorithm that sorts numeric strings based on human habits. This is the "natural order".

The comparison principle of strncmp(str1, str2, len) function is similar to that of strcmp(str1, str2) function. The difference is that it only compares the len characters at the beginning of the string.

ps: The above three functions are all case-sensitive. If the compared strings are not case-sensitive, there are three other similar functions: strcasecmp, strnatcasecmp, strncasecmp.



String comparison functions strcmp() and strncmp()

Compare:
Function prototype: extern int strcmp(const char *s1, const char * s2);

int strncmp(char *str1, char *str2, int maxlen);
You can see that there are many strncmp One parameter maxlen, the difference is here, this represents the character of the first maxlen length of the comparison string

The return value of the two is also different:
strcmp, when s1 When s1==s2, return 0
When s1>s2, return a positive number
strncmp: If the previous maxlen bytes are completely equal, the return value = 0;
If the previous maxlen bytes are equal During the comparison process, if str1[n] and str2[n] are not equal, (str1[n]-str2[n]) will be returned.


String comparison functions strcmp() and strncmp()

Function: int strcmp (const char *s1, const char *s2)
This function is used to compare the s1 and s2 strings. This function will return a value whose sign is different from the first pair of characters. The comparison results are relevant.

If the two strings are equal, strcmp will return 0.
If s1 is a substring of s2, s1 is less than s2
In addition, there is also the function
int strncmp (const char *s1, const char *s2, size_t size)
This function is extremely similar to strcmp similar. The difference is that the strncmp function specifies to compare size characters. That is, if the first size characters of strings s1 and s2 are the same, the function returns a value of 0.


http://www.bkjia.com/PHPjc/887684.html

truehttp: //www.bkjia.com/PHPjc/887684.htmlTechArticleThe difference between PHP strcmp, strnatcmp, strncmp functions, strnatcmpstrncmp string comparison description when s1s2, return a negative number when s1 =s2, return value = 0 when s1s2, return positive number 1 ? php 2 $st...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools