DatePeriod (class)
The DatePeriod class
介绍
(PHP 5 >= 5.3.0, PHP 7)
代表日期。
日期允许对一组日期和时间进行迭代,在给定的时间段内定期重复。
课程简介
DatePeriod
implements Traversable {
/* Constants */
const integer EXCLUDE_START_DATE = 1 ;
/* Methods */
public __construct ( DateTimeInterface $start
, DateInterval $interval
, int $recurrences
, int $options
)
public __construct ( DateTimeInterface $start
, DateInterval $interval
, DateTimeInterface $end
, int $options
)
public __construct ( string $isostr
, int $options
)
public DateInterval getDateInterval ( void )
public DateTimeInterface getEndDate ( void )
public DateTimeInterface getStartDate ( void )
}
预定义的常量
DatePeriod::EXCLUDE_START_DATE
排除DatePeriod :: __ construct()中使用的开始日期。
目录
- DatePeriod :: __ construct - 创建一个新的DatePeriod对象
- DatePeriod :: getDateInterval - 获取间隔
- DatePeriod :: getEndDate - 获取结束日期
- DatePeriod :: getStartDate - 获取开始日期
←DateInterval ::格式
DatePeriod::__construct →