Collator::sortWithSortKeys
Collator::sortWithSortKeys
collator_sort_with_sort_keys
(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
Collator::sortWithSortKeys -- collator_sort_with_sort_keys — Sort array using specified collator and sort keys
Description
Object oriented style
public bool Collator::sortWithSortKeys ( array &$arr )
Procedural style
bool collator_sort_with_sort_keys ( Collator $coll , array &$arr )
Similar to collator_sort() but uses ICU sorting keys produced by ucol_getSortKey() to gain more speed on large arrays.
Parameters
coll
Collator object.
arr
Array of strings to sort
Return Values
Returns TRUE
on success or FALSE
on failure.
Examples
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
?>
The above example will output:
array (
0 => 'Kopfe',
1 => 'Kypper',
2 => 'Köpfe',
)
See Also
- Collator constants
- collator_sort() - Sort array using specified collator
- collator_asort() - Sort array maintaining index association
← Collator::setStrength
Collator::sort →
© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://secure.php.net/manual/en/collator.sortwithsortkeys.php