Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18283 программиста и 1642 робота. Сейчас ищут 1249 программистов ...
Collator::sortWithSortKeys - Sort array using specified collator and sort keys
Вернуться к: Collator
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
Описание
Объектно-ориентированный стиль
public
bool
Collator::sortWithSortKeys
( array
&$arr
)Процедурный стиль
Similar to collator_sort() but uses ICU sorting keys produced by ucol_getSortKey() to gain more speed on large arrays.
Возвращаемые значения
Возвращает TRUE
в случае успешного завершения или FALSE
в случае возникновения ошибки.
Примеры
Пример #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 );
?>
Результат выполнения данного примера:
array ( 0 => 'Kopfe', 1 => 'Kypper', 2 => 'Köpfe', )
Смотрите также
- Collator constants
- collator_sort() - Sort array using specified collator
- collator_asort() - Sort array maintaining index association
Вернуться к: Collator