If I have an array with three items and I delete the second one, will the key for the third one stay the same or automatically change?
i.e.
array[0]=first item
array[1]=second item
array[2]=third item
after deleting array[1] will it be:
(case 1)
array[0]=first item
array[2]=third item
or (case 2)
array[0]=first item
array[1]=third item
PHP seems to do a lot more things automatically than C, so I'm just checking.