Array Tail

Get the last n elements of an array.

Code

General
array_slice($arr, -$n);

Parameters

Array to slice

Number of elements

Server

More PHP Snippets