compare_ci_l
Note
This is a point-in-time snapshot of the API documentation from January 2026. Going forward, we will not be maintaining a public copy of these references, and recommend users to refer to the built-in signature helpers available in the Hack LSP instead for complete and up-to-date information.
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 $localestring $string1string $string2
Returns
int