Answers for "what is index 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

Browse Popular Code Answers by Language