3v4l.org

run code in 300+ PHP versions simultaneously
<?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);

preferences:
27.1 ms | 404 KiB | 5 Q