Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

collections_comparator()

Description

Case insensitive string comparisons using a "natural order" algorithm for collection names

Parameters

ColumnTypeDefaultDescription
$a string
$b string

Return

integer < 0 if $a is less than $b > 0 if $a is greater than $b, and 0 if they are equal.

Location

include/collections_functions.php lines 1851 to 1854

Definition

 
function collections_comparator($a$b)
    {
    return 
strnatcasecmp(i18n_get_collection_name($a), i18n_get_collection_name($b));
    }

This article was last updated 19th March 2024 07:35 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.