<?php $data = [ 'a', 'b', 'c', ]; // Our first index $firstIndex = 10; // Index before first $tmpIndex = $firstIndex - 1; // Re-index with a temporary $array = [$tmpIndex => null, ...$data]; // Remove temporary unset($array[$tmpIndex]); var_dump($array);
You have javascript disabled. You will not be able to edit any code.