当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > strcasecmp()函数
The strcasecmp() function compares two strings.
strcasecmp()函数的作用是:对两个字符串进行比较。
This function returns:
该函数将返回下列值:
strcasecmp(string1,string2) |
Parameter参数 | Description描述 |
---|---|
string1 | Required. Specifies the first string to compare 必要参数。指定参与比较的第一个字符串对象 |
string2 | Required. Specifies the second string to compare 必要参数。指定参数比较的第二个字符串对象 |
Tip: The strcasecmp() function is binary safe and case-insensitive.
提示:strcasecmp()函数是二进制精确,并且它区分字母的大小写。
<?php echo strcasecmp("Hello world!","HELLO WORLD!"); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
0 |