I have an array of values:
Array ( [0] => hello [5] => Im [50] => from [1032] => Europe [1039] => where [1117] => are [1137] => you [1873] => from? )
What is the best way to unset these values and move everything to front ?
To be like this:
Array ( [0] => hello [1] => Im [2] => from [3] => Europe [4] => where [5] => are [6] => you [7] => from? )