For those still interested, I've created my own little simple hack for this: <?php $array1=array("value1", "value2"); $blank_array=array(null); $final_array = array_merge($blank_array,$array1); unset($final_array[0]); print_r($final_array); ?> PHP:
Cause I had a bunch of other stuff that, for their own reason, needed to start at 1 and index 0 was ignored. This other array that started at 0 though, needed to link to the 1 Either way, I've got it now.. so all is fine