PHP function array_slice() returns sequence of elements by offset like this:
// sample data
$a = array('a','b','c',100=>'aa',101=>'bb',102=>'cc');
// outputs empty array because offset 100 not defined
print_r(array_slice($a,100));
Current function arguments:
array_slice ( $array, $offset, $length, $preserve_keys)
I need something like this:
array_slice ( $array, **$key**, $length, $preserve_keys)
That outputs this according to above print_r:
array (
100 => aa,
101 => bb,
102 => cc
)