Which is the best array_ function to use to move an element's position, like this:
From:
Array
(
[0] => banana
[1] => apple
[2] => peach
)
To:
Array
(
[0] => apple
[1] => banana
[2] => peach
)
In practice I want to allow users to change their default email address 🙂
Rgds
M.