|
Collator::sortWithSortKeyscollator_sort_with_sort_keysSort array using specified collator and sort keys DescriptionObject-oriented style
public bool Collator::sortWithSortKeys(array
&$array)Procedural style bool collator_sort_with_sort_keys(Collator
$object, array &$array)Similar to collator_sort but uses ICU sorting keys produced by ucol_getSortKey() to gain more speed on large arrays. Parameters
Return Values
Returns Examples
Example #1 collator_sort_with_sort_keys example The above example will output: array ( 0 => 'Kopfe', 1 => 'Kypper', 2 => 'Köpfe', ) |