I want to move element of array present at 1st index to the 5th index in the array. How can I do that?
$arr[4]=$arr[0]; unset($arr[0]);