strncasecmp() 函数比较两个字符串。
笔记:strncasecmp() 是二进制安全且不区分大小写的。
提示:这个函数类似于strcasecmp()函数,只不过 strcasecmp() 没有长度参数。
strncasecmp(
string1,string2,length)
Parameter | Description |
---|---|
string1 | Required. Specifies the first string to compare |
string2 | Required. Specifies the second string to compare |
length | Required. Specify the number of characters from each string to be used in the comparison |
返回值: | 该函数返回:
|
---|---|
PHP 版本: | 4.0.2+ |
比较两个字符串(不区分大小写 = Hello 和 hELLo 将输出相同的结果):
<?php
echo strncasecmp("Hello","Hello",6);
echo "<br>";
echo strncasecmp("Hello","hELLo",6);
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!