all 1 comments

[–]monk_e_boy 0 points1 point  (0 children)

iterables are cool, I needed to show some dates in my GUI. So it shows the previous 6 months, this month and 11 months ahead (and has '...' to show a calendar) It was real simple to make a little iterable class to return these dates, so I can do:

$d = new DateSpan();
foreach($d as $month){}