I have the following keys in my array:
Array (
"Danger - 69" => Array();
"Fab - 67" => Array();
"Cat - 68" => Array();
)
I want it to be ordered by the number in the string and not the first letter in the string itself, like this:
Array (
"Fab - 67" => Array();
"Cat - 68" => Array();
"Danger - 69" => Array();
)