Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/11/2013, 06:28
martin_9_91
 
Fecha de Ingreso: mayo-2011
Ubicación: Bs.As Argentina
Mensajes: 193
Antigüedad: 13 años
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
  1. $fecha = new DateTime('2000-01-01');
  2. $fecha->add(new DateInterval('P10D'));
  3. echo $fecha->format('Y-m-d') . "\n";