How should I remove every second element from an array like this (using nothing but the built in Array functions in PHP):
$array = array('first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh');
And when I remove every second element, I should get:
$array = array('first', 'third', 'fifth', 'seventh');
Possible?