Greetings Stackoverflow.
Let's say I have the following array:
[D35D] => D35D
[D35C] => D35C
[D14D] => D14D
[D14B] => D14B
[D14A] => D14A
[D13C] => D13C
Is there a way to sort the array by key and keeping the sorting descending but alphabetically? So the result array will be like this:
[D35C] => D35C
[D35D] => D35D
[D14A] => D14A
[D14B] => D14B
[D14C] => D14C
[D13C] => D13C