Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/11/2007, 11:15
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 1 mes
Puntos: 17
Re: mejorar recorrido de fechas de fechas

Código PHP:
<?php
$inicio
=strtotime('2007-11-01');
$fin=strtotime('2007-12-31');
while (
date('w'$inicio) != 3) {
    
$inicio += 24 60 60;
}

for (
$fecha $inicio$fecha <= $fin$fecha += 24 60 60)
{
    echo 
date('Y-m-d'$fecha)."<br>";
}
?>
Tratá de mantener las dudas relacionadas a un mismo tema en el mismo thread =)