is there anyway to set which element the internal array pointer should point to in an array?
ex
i have an associative array
$arr=array("one"=>1,"two"=3,"three"=>3,...);
this array could potentially have 5000 elements
is there a way to have the internal array pointer jump to the n'th element without having to walk through all the elements in between with next()? and then be able to use next() to get to the (n+1)'th element?