PHP program to return all elements in a given array except for the first one.
<?php
//Licence: https://bit.ly/2CFA5XY
function tail($items)
{
return count($items) > 1 ? array_slice($items, 1) : $items;
}
print_r(tail([1, 2, 3]));
?>
Output:
Array
(
[0] => 2
[1] => 3
)
