哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

DatePeriod::getRecurrences

(PHP 7 >= 7.2.17/7.3.4, PHP 8)

DatePeriod::getRecurrencesGets the number of recurrences

说明

面向对象风格

public DatePeriod::getRecurrences(): ?int

Get the number of recurrences.

参数

此函数没有参数。

返回值

The number of recurrences as set by explicitly passing the $recurrences to the contructor of the DatePeriod class, or null otherwise.

范例

示例 #1 Different values for DatePeriod::getRecurrences()

<?php
$start 
= new DateTime('2018-12-31 00:00:00');
$end   = new DateTime('2021-12-31 00:00:00');
$interval = new DateInterval('P1M');
$recurrences 5;

// recurrences explicitly set through the constructor
$period = new DatePeriod($start$interval$recurrencesDatePeriod::EXCLUDE_START_DATE);
echo 
$period->getRecurrences(), "\n";

$period = new DatePeriod($start$interval$recurrences);
echo 
$period->getRecurrences(), "\n";

$period = new DatePeriod($start$interval$recurrencesDatePeriod::INCLUDE_END_DATE);
echo 
$period->getRecurrences(), "\n\n";

// recurrences not set in the constructor
$period = new DatePeriod($start$interval$end);
var_dump($period->getRecurrences());

$period = new DatePeriod($start$interval$endDatePeriod::EXCLUDE_START_DATE);
var_dump($period->getRecurrences());
?>

以上例程会输出:


5
5
5

NULL
NULL

参见

打开 哈希空间 微信小程序中查看更佳