我认为这个问题很简单,但我仍然停留在这里。我想显示当前年份 + 未来 2 年。例如,如果现在是 2013 年,它将显示 2013、2014、2015 年,如果今年是 2014 年,它将显示 2014、2015、2016 年。
这是我的编码
$myCalendar->setYearInterval(date('Y'), 2015);
function setYearInterval($start, $end){
$this->year_start_input = $start;
$this->year_end_input = $end;
if(!$start) $start = $this->year_start;
if(!$end) $end = $this->year_end;
if($start < $end){
$this->year_start = $start;
$this->year_end = $end;
}else{
$this->year_start = $end;
$this->year_end = $start;
}
我确实将 2015 年更改为 +2 / -2,但显示的是 2011、2012、2013 年(当年 + 2 年前)。请帮忙。谢谢。