Correct, indices is plural for index.
"Base indices" means just what it says. The base index.
IE:
Not Recommended:
PHP Code:
<?php
$var = array(11 => 'a', 'b', 'c');
?>
Recommended:
PHP Code:
<?php
$var = array(0 => 'a', 'b', 'c');
?>
The first example would assign the index of 11 to a, 12 to b, 13 to c.
The second example would assign the index of 0 to a, 1 to b, 2 to c.
"Thanks for the further clarification."
You're very welcome