PHP remove the first index of an array and re-index
- by Mithun
I have an array like 
Array
(
    [0] => A
    [2] => B
    [4] => C
    [6] => D
)
I want to remove the first element and then re-index array to get the output
(
    [0] => B
    [1] => C
    [2] => D
)
Which PHP function i need to use?