phpksort

Is there a way to choose the sorting of ksort?


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


Solution

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