PHP Sorting an array or arrys by letter
Clash Royale CLAN TAG#URR8PPP
PHP Sorting an array or arrys by letter
Can anyone help me sort the following array so that the arrays are in alphabetical order?
Array (
[k] => Array (
[0] => Array ()
[1] => Array ()
)
[A] => Array (
[0] => Array ()
[1] => Array ()
)
[M] => Array (
[0] => Array ()
[1] => Array ()
)
[B] => Array (
[0] => Array ()
[1] => Array ()
)
)
Many thanks
ksort
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Are you looking for
ksort
?– Eddie
1 min ago