|
Collator::asortcollator_asort(PHP 5 >= 5.3.0, PECL intl >= 1.0.0) Collator::asort -- collator_asort — Sort array maintaining index association ОписаниеОбъектно-ориентированный стиль
bool
Collator::asort
( array &$arr
[, int $sort_flag
] )
Процедурный стиль This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant. Array elements will have sort order according to current locale rules. Equivalent to standard PHP asort(). Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. Примеры
Пример #1 collator_asort()example
<?php Результат выполнения данного примера: array ( 'c' => '7', 'b' => '50', 'a' => '100', )array ( 'a' => '100', 'b' => '50', 'c' => '7', ) Смотрите также
|
|