PHP Doku:: Sort array using specified collator and sort keys - collator.sortwithsortkeys.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe Collator classCollator::sortWithSortKeys -- collator_sort_with_sort_keys

Ein Service von Reinhard Neidl - Webprogrammierung.

The Collator class

<<Collator::setStrength -- collator_set_strength

Collator::sort -- collator_sort>>

Collator::sortWithSortKeys

collator_sort_with_sort_keys

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

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

Beschreibung

Object oriented style

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.

Parameter-Liste

coll

Collator object.

arr

Array of strings to sort

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)