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, 22 Aug 2008

view this page in

Collator::sortWithSortKeys

collator_sort_with_sort_keys

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

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

Descripción

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.

Lista de parámetros

coll

Collator object.

arr

Array of strings to sort

Valores retornados

Devuelve TRUE si todo se llevó a cabo correctamente, FALSE en caso de fallo.

Ejemplos

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

El resultado del ejemplo seria:

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, 22 Aug 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites