how to remove first element from array in php code example
Example: remove first element in array php
$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]
$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]