Rumah > Artikel > pembangunan bahagian belakang > strncmp函数用法详解
strncmp函数为字符串比较函数,其函数语法为“int strncmp ( const char * str1, const char * str2, size_t n );”,功能是把str1和str2进行比较。
strncmp函数为字符串比较函数,字符串大小的比较是以ASCII 码表上的顺序来决定,此顺序亦为字符的值。其函数声明为int strncmp ( const char * str1, const char * str2, size_t n );功能是把 str1 和 str2 进行比较,最多比较前 n 个字节,若str1与str2的前n个字符相同,则返回0;若s1大于s2,则返回大于0的值;若s1 小于s2,则返回小于0的值。
strncmp语法
函数声明
int strncmp(const char *str1, const char *str2, size_t n)
参数
str1-- 要进行比较的第一个字符串。
str2-- 要进行比较的第二个字符串。
n-- 要比较的最大字符数。
返回值
该函数返回值如下:
如果返回值 514d4f3c1b2a575e482840d2fe149eb8 0,则表示 str2 小于 str1。
如果返回值 = 0,则表示 str1 等于 str2。
功能比较
函数 strncmp 与函数strcmp极为类似,但功能不完全相同,区别如下:
(1)strncmp函数
用来比较s1和s2字符串的前n个字符。如果两个字符串相等的话,strncmp将返回0。如果s1是s2的一个子串的话,s1小于s2。
(2)strcmp函数
同样用于比较两个字符串 ,设这两个字符串为str1,str2
若str1==str2,则返回零;
若str1 > str2,则返回正数;
若str136d59d5798402002238be25b5a5db8c70,如果str1等于str2,返回值就=0,len指的是str1与str2的比较的字符数。此函数功能即比较字符串str1和str2的前len个字符。 [5]
提示:该函数区分大小写。
示例:
<?php $str1="Ilikephp!"; $str2="ianfine!"; echo strncmp($str1,$str2,2); ?>
结果为:-1
更多相关知识,请访问PHP中文网!
Atas ialah kandungan terperinci strncmp函数用法详解. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!