re-index php keys in array starting with certain number

66 Views Asked by At

I have an array which has keys starting from 0 upwards. Is there a way to reindex the array to change shift the keys to start from 3 instead of 0?

2

There are 2 best solutions below

0
On

Quickly off the top of my head, but there's probably better ways to do it

$reindexedArray = array_combine(
    range(3,count($originalArray)+3),
    $originalArray
);
0
On
$newArray = array();
foreach($myArray as $key=>$value){
$newArray[$key+3] = $value;
}
print_r($newArray);