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

collections_comparator_desc()

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 1865 to 1868

Definition

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

This article was last updated 4th December 2023 20:05 Europe/London time based on the source file dated 21st November 2023 15:25 Europe/London time.