So I've array which looks like this
Array ( [1] => 150 [2] => 190 [3] => 170 [6] => 160 [7] => 180 )
And want to receive it sorted but keep keys same. Smth like this:
Array ( [1] => 150 [2] => 160 [3] => 170 [6] => 180 [7] => 190 )
I tried a lot of php functions for array sorting but cant get right result. Help pls