Multiple choice php

In PHP, arrays may be sorted with which of the following functions?

  1. uksort()

  2. arsort()

  3. ksort()

  4. All of the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

PHP provides multiple sorting functions for arrays: uksort() sorts by user-defined key comparison, arsort() sorts in reverse order maintaining index association, and ksort() sorts by key. Since all three listed functions are valid PHP array sorting functions, option D is correct. PHP has a rich set of array manipulation functions.