Carbon get years between specified start year and current year
Asked Answered
C

1

6

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..

Counterpunch answered 12/10, 2016 at 19:45 Comment(0)
C
19

Solution:

$years = range(Carbon::now()->year, 2014)
Counterpunch answered 12/10, 2016 at 20:5 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.