PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Collator::sort> <Collator::setStrength
Last updated: Fri, 20 Jun 2008

view this page in

Collator::sortWithSortKeys

collator_sort_with_sort_keys

(No version information available, might be only in CVS)

collator_sort_with_sort_keys — Sort array using specified collator and sort keys

Description

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.

Liste de paramètres

coll

Collator object.

arr

Array of strings to sort

Valeurs de retour

Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.

Exemples

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

L'exemple ci-dessus va afficher :

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



add a note add a note User Contributed Notes
Collator::sortWithSortKeys
There are no user contributed notes for this page.

Collator::sort> <Collator::setStrength
Last updated: Fri, 20 Jun 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites