©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PHP 4 >= 4.0.2, PHP 5)
strncasecmp — 二进制安全比较字符串开头的若干个字符(不区分大小写)
$str1
, string $str2
, int $len
)该函数与 strcasecmp() 类似,不同之处在于你可以指定两个字符串比较时使用的长度(即最大比较长度)。
str1
第一个字符串。
str2
第二个字符串。
len
最大比较长度。
如果 str1
小于
str2
返回 < 0;
如果 str1
大于 str2
返回 > 0;如果两者相等,返回 0。
[#1] saikumar dot msc at gmail dot com [2014-06-01 15:26:11]
Example:
<?php
$string = ??true??;
if(strncasecmp($string, ??Trudeau??, 4)) { print ??True??; } else { print "False" }
?>
If we look at above example, immediately we will say the final output will be 'False', but that's not real.
Method "strncasecmp()" returns 1 because the first four characters of ??Trud?? come before the first four characters of "true" when sorted not case sensitively.