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.