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_keysSort array using specified collator and sort keys

설명

객체 기반 형식

public bool Collator::sortWithSortKeys ( array &$arr )

절차식 형식

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.

인수

coll

Collator object.

arr

Array of strings to sort

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

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 );
?>

위 예제의 출력:

array (
  0 => 'Kopfe',
  1 => 'Kypper',
  2 => 'Köpfe',
)

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top