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