计算 PHP DatePeriod() 的迭代次数
我了解日期周期的工作原理,但有一个例外,有没有办法从日期周期中找出有多少个间隔?
例如:
// define the period of the range
$period = new DatePeriod($begin, $rangeType, $end);
// iterate through the dates in range
foreach ( $period as $dt ) {
}
这就是我想从上面的代码中执行的操作:
echo count($period);
基本上,我想知道循环最终会运行多少次。foreach