Calcular fecha de termino a partir de fecha de inicio


/ Published in: PHP
Save to your folder(s)

Como parametro se tiene que tener la cantidad de meses que se desea sumar a la fehc a de inicio


Copy this code and paste it in your HTML
  1. // CAlCULAR FECHA DE TERMINO
  2. list($panioi,$pmesi,$pdiai) = explode("-",$array_prop[0]['pro_fecha_tentativa']);
  3. $fecha_cambiada = mktime(0,0,0,((INT)$pmesi+(INT)$array_prop[0]['pro_duracion']),$pdiai,$panioi);
  4. $fecha_final_proy = date("Y-m-d", $fecha_cambiada);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.