Si si quedo, muchas gracias eh, ya había hecho este código:
<?php
$arr=array("dia","noche","sol","luna");
$i = 0;
foreach($arr as $elementos){
if($i == 1) {
echo $elementos."<br>";
$i = 0;
}
else {
$i = 1;
}
}
?>
Pero el de usted creo yo que esta más fácil de entender, gracias por el tiempo dedicado y su ayuda