how to start the index from 1 in php

98

$array = array("a","b","c");
array_unshift($array,"");
unset($array[0]);

Comments

Submit
0 Comments