In short: no.
Indeces in PHP (eg in $array[0], 0 is the index) are a distance from the front of the array. So the first element in the array is 0 elements away, right? The second is 1 element from the front and the 10 element is 9 from the front.
On another note, there are many iteration constructs (loops) in PHP. The most important here is the for loop. You can read all about it in the manual and it would look something like this:
// this will give $array[0] => 'item0' but you can add 1 to $j when making the string
for($j = 0; $j < 10; $j++)
$array[$j] = 'item'.$j; // or = 'item'.($j + 1);