I want to change the indexing of array for example. I have an array
$a = array("a","e","i","o","u");
echo $a[0]; //output a
It means this array has index (0,1,2,3,4)
Now I want to start my array from index 100 instead 0
Means array with index (100,200,300,400,500)