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