Advertisement
mpryl-neducatio

Get the rest elements beginning from offset

Oct 24th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. function offsetElements(array $elements, $index)
  2. {
  3.   return array_slice($elements, $index);
  4. }
  5.  
  6. $elements = array(2, 3, 10, 22, 78, 88);
  7.  
  8. var_dump(offsetElements($elements, 4));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement