我了解日期期间如何工作,但有一个例外,有没有办法从日期期间找出有多少间隔?
例如:
// 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
基本上我想知道循环最终会运行多少次。