Collator::sortWithSortKeys
collator_sort_with_sort_keys
(No version information available, might be only in CVS)
Collator::sortWithSortKeys -- collator_sort_with_sort_keys — Sort array using specified collator and sort keys
Descrierea
Object oriented style
bool
Collator::sortWithSortKeys
( array &$arr
)
Procedural style
Similar to collator_sort() but uses ICU sorting keys produced by ucol_getSortKey() to gain more speed on large arrays.
Valorile întroarse
Întoarce valoarea TRUE în cazul succesului sau FALSE în cazul eşecului.
Exemple
Example #1 collator_sort_with_sort_keys() example
<?php
$arr = array( 'Köpfe', 'Kypper', 'Kopfe' );
$coll = collator_create( 'sv' );
collator_sort_with_sort_keys( $coll, $arr );
var_export( $arr );
?>
Exemplul de mai sus va afişa:
array ( 0 => 'Kopfe', 1 => 'Kypper', 2 => 'Köpfe', )
Collator::sortWithSortKeys
There are no user contributed notes for this page.
