
29/11/2013, 06:28
|
| | Fecha de Ingreso: mayo-2011 Ubicación: Bs.As Argentina
Mensajes: 193
Antigüedad: 13 años, 9 meses Puntos: 3 | |
Respuesta: Duda de sumar fecha En la ayuda de php hay ejemplos http://php.net/manual/es/datetime.add.php
Algo así no te sirve?
Código PHP:
Ver original$fecha = new DateTime('2000-01-01'); $fecha->add(new DateInterval('P10D')); echo $fecha->format('Y-m-d') . "\n";
|