If that's the case, you should first prepare your array. Based on your given array, it seems the index is not consecutively correct. Try using array_values() function.
$items = array('1' => 'two','9' => 'four','7' => 'three','6'=>'seven','11'=>'nine','2'=>'five');$new_items = array_values($items);$new_items = array( [0] => 'two', [1] => 'four', [2] => 'three', [3] => 'seven', [4] => 'nine', [5] =>'five');
Then you can do the foreach..
foreach($new_items as $key => $value) { // Do the code here using the $key}