碳在指定的开始年份和当前年份之间获得多年

Is there anyway to get the years between a start year and current year in an array, if possible with Carbon?

So this year the array would be:

[2014,2015,2016]

And next year 2017 will be included:

[2014,2015,2016,2017]

Thanks..

Solution:

$years = range(Carbon::now()->year, 2014)