<?php $date = new DateTime('2016-06-06'); // Y-m-d $date->add(new DateInterval('P30D')); echo $date->format('Y-m-d') . " "; ?>