jnjxp / calerator

日历日期迭代器

dev-develop 2016-11-25 12:05 UTC

This package is auto-updated.

Last update: 2024-08-26 08:54:47 UTC


README

像日历一样迭代日期。

  • YearMonth 的集合。
  • MonthWeek 的集合。
  • WeekDay 的集合。

安装

composer require jnjxp/calerator

使用方法

foreach (new Year(2016) as $month) {
    foreach($month as $week) {
        foreach ($week as $day){
            //...
        }
    }
}