HH\Lib\Str\compare_ci_l
Returns < 0
if $string1
is less than $string2
, > 0
if $string1
is
greater than $string2
, and 0
if they are equal (case-insensitive)
namespace HH\Lib\Str;
function compare_ci_l(
\HH\Lib\Locale\Locale $locale,
string $string1,
string $string2,
): int;
For a case-sensitive comparison, see Str\compare_l()
.
Locale-specific collation and case-sensitivity rules will be used. For
example, case-insensitive comparisons between i
, I
, ı
, and İ
vary
by locale.
Guide
Parameters
\HH\Lib\Locale\Locale $locale
string $string1
string $string2
Returns
int