Answers for "how to start the index from 1 in php?"

PHP
0

how to start the index from 1 in php?

$array = array("a","b","c");
array_unshift($array,"");
unset($array[0]);
Posted by: Guest on September-04-2020

Code answers related to "how to start the index from 1 in php?"

Browse Popular Code Answers by Language