strcasecmp() 函数比较两个字符串。
提示:strcasecmp() 函数是二进制安全且不区分大小写的。
提示:这个函数类似于strncasecmp()函数,不同之处在于您可以指定每个字符串中用于与 strncasecmp() 进行比较的字符数。
strcasecmp(
string1,string2)
Parameter | Description |
---|---|
string1 | Required. Specifies the first string to compare |
string2 | Required. Specifies the second string to compare |
返回值: | 该函数返回:
|
---|---|
PHP 版本: | 4+ |
比较两个字符串(不区分大小写 = HELLO 和 hELLo 将输出相同的结果):
<?php
echo strcasecmp("Hello","HELLO");
echo "<br>";
echo strcasecmp("Hello","hELLo");
?>
亲自试一试 »
返回值不同:
<?php
echo strcasecmp("Hello world!","HELLO WORLD!"); // The two strings are equal
echo strcasecmp("Hello world!","HELLO"); // String1 is greater than string2
echo strcasecmp("Hello world!","HELLO WORLD! HELLO!"); // String1 is less than string2
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!