<?php
$testArray = array('foot', 'bike', 'car', 'plane');
next($testArray); next($testArray);
echo prev($testArray); // bike
?>
<?php
$testArray = array('foot', 'bike', 'car', 'plane');
next($testArray); next($testArray);
echo prev($testArray); // bike
?>