02/10/2011, 08:07
|
| | | Fecha de Ingreso: julio-2008 Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 16 años, 4 meses Puntos: 416 | |
Respuesta: Modificar script para generar lunes apartir de hoy? Mejor usa strtotime():
Código PHP:
Ver original<?php $i = 0; do { echo date("d-m-Y", $nextMonday) . "<br />\n"; $nextMonday = $nextMonday + (60*60*24*7); $i++; } while($i < 53);
|