PEAR::Calendarで翌月や翌々月の取り方

//翌月
			$current_year = date('Y', strtotime(date('Y-m-1').'+'.((int)$getmonth+1).' month'));
			$current_month = date('n', strtotime(date('Y-m-1').'+'.((int)$getmonth+1).' month'));

//翌々月
			$current_year = date('Y', strtotime(date('Y-m-1').'+'.((int)$getmonth+2).' month'));
			$current_month = date('n', strtotime(date('Y-m-1').'+'.((int)$getmonth+2).' month'));