$a = array(......);
$fine = end($a);
while($fine) {
echo($fine);
$fine = prev($fine);
}