PHP - strcoll 函数



语法

int strcoll ( string $str1 , string $str2 )

定义和用法

用于根据区域设置比较两个字符串。

返回值

返回字符串函数。

参数

序号 参数及描述
1

string1

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

2

string2

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

示例

尝试以下示例

<?php
   echo "If this function returns 0, the two strings are equal.";
   echo "<br> The result is ";
   
   setlocale (LC_COLLATE, 'NL');
   echo strcoll("Hello World!","Hello World!");
?>

这将产生以下结果:

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