0
I have the following array and would like to always remove the first array, how can I do that? Obs: there is the possibility that the first array may not always have index 0.
Array
(
[0] => Array
(
[0] => number
)
[1] => Array
(
[0] => 101010100
)
[2] => Array
(
[0] => 30303030
)
)
I tried with this function before asking the question, but it is only leaving the first array and removes the rest
– Thiago
What version of
PHP
are you using? See ideone the working example.– Marcelo de Andrade