I have an array:
[13] => Array ( [0] => joe [1] => 0 [14] => Array ( [0] => bob
Use array_slice:
$res = array_slice($array, -3, 3, true);