I\'m trying to get the month, six months out from the current date.
I\'ve tried using:
date(\'d\', strtotime(\'+6 month\', time()));
B
You can use the DateTime class in conjunction with the DateInterval class:
DateTime
DateInterval
add(new DateInterval('P6M')); echo $date->format('d M Y');