Вопрос

I have a use for ksort() and I need to choose the sorting order(ASC/DESC).

Is there a way of doing it without array_multisort()?

Это было полезно?

Решение

krsort() for descending order
ksort() for ascending order

Другие советы

Also :

krsort() function to sort an associative array in descending order, according to the key.
&
ksort for ascending order
plus
arsort() function to sort an associative array in ascending order, according to the value.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top