Ver original<?php$fecha = new DateTime('2011-01-01');$meses = 3;$mas = "+$meses month";$fecha->modify($mas);echo $fecha->format('Y-m-d')."<br>";