I have the following array and i want to sort it by the number of every word.
Array ( [0] => Array ( [test] => 0 ) 
[1] => Array ( [test1] => 1296 ) 
[2] => Array ( [test2] => 1046 ) 
[3] => Array ( [test3] => 1171 ) 
[4] => Array ( [test4] => 857 ) 
[5] => Array ( [test5] => 1051 )
[6] => Array ( [test6] => 929 ) 
[7] => Array ( [test7] => 986 )
I want to produce 
   Array ( [0] => Array ( [test1] => 1296 )
    [1] => Array ( [test3] => 1171 )
etc...
 
    