I have a multidiemensional associatve array that I am trying to sort both alphabetically and by size. Check the example that im currently getting but now I want to sort the Keys "ACC, ABB, AAB" alphabetically without editing the size sorting if that makes sense.
arsort($myarray);
// Returns an array sorted by its value size from biggest to smallest but need to to also sort it keys alpabetically without amongest keys that have the same size.
$myArray = Array ( <--- Arrange this alphabetically and by size
[AAA] => Array ( is 1st
[1] => 1
[2] => 1
[3] => 1
[4] => 1
)
[ACC] => Array ( should be 3rd
[1] => 1
[2] => 1
)
[ABB] => Array ( should be 2nd
[1] => 1
[2] => 1
)
[AAB] => Array ( should be 1st
[1] => 1
[2] => 1
)
[AA] => Array ( is 1st
[1] => 1
)
[AB] => Array ( is 2nd
[1] => 1
)
)
