Sort array using specified collator and sort keys

Collator::sortWithSortKeys

collator_sort_with_sort_keys

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

Collator::sortWithSortKeys -- collator_sort_with_sort_keysSort array using specified collator and sort keys

說明

物件導向風格

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

過程化風格

collator_sort_with_sort_keys(Collator $object, array &$array): bool

Similar to collator_sort() but uses ICU sorting keys produced by ucol_getSortKey() to gain more speed on large arrays.

參數

object

Collator object.

array

Array of strings to sort

返回值

成功時返回 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',
)

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *