I have an array called $array.
In the $array i have the following:
0 => Value1
1 => Value2
2 => Value3
3 => Value4
4 => Value5
I then want to remove Value3 from the array.
I do unset($array[2]) and its gone
But, there is still a key of 2 in the array.
I wanted to know how to either remove the key, or to move the Value4 to key 2 move Value 5 to key 3 and remove the last key.