PHP strcmp() 函数


PHP String 函数

定义和用法

strcmp() 函数比较两个字符串。

该函数返回:

语法

strcmp(string1,string2)

参数 描述
string1 必需。规定要比较的第一个字符串。
string2 必需。规定要比较的第二个字符串。


提示和注释

注释:该函数是二进制安全的,且对大小写敏感。


例子

<?php
echo strcmp("Hello world!","Hello world!");
?>

输出:

0


PHP String 函数
粤ICP备11097351号-1