PHP - strcmp 函数



语法

strcmp(string1,string2)

定义和用法

用于比较两个字符串

返回值

返回字符串函数

参数

序号 参数和描述
1

string1

指定要比较的第一个字符串

2

string2

指定要比较的第二个字符串

示例

尝试以下示例

<?php
   echo "If this function returns 0, the two strings are equal.";
   echo "<br> The result is ";
   echo strcmp("Hello world!","Hello world!");
?>

这将产生以下结果:

If this function returns 0, the two strings are equal.
The result is 0
php_function_reference.htm
广告