📜  PHP | DatePeriod getStartDate()函数

📅  最后修改于: 2022-05-13 01:56:49.847000             🧑  作者: Mango

PHP | DatePeriod getStartDate()函数

DatePeriod::getStartDate()函数是PHP中的一个内置函数,用于返回给定日期期间的开始日期。

句法:

DateTimeInterface DatePeriod::getStartDate( void )

参数:此函数不接受任何参数。

返回值:此函数返回给定日期期间的开始日期。

下面的程序说明了PHP中的 DatePeriod::getStartDate()函数:

方案一:

getStartDate();
  
// Getting the start date
echo $StartDate->format(DateTime::ISO8601);
  
?>
输出:
2019-05-16T00:00:00+0000

方案二:

getStartDate();
  
// Getting the start date
echo $StartDate->format(DateTime::ISO8601);
?>
输出:
2019-09-30T10:40:44+0000

参考: https://www. PHP.net/manual/en/dateperiod.getstartdate。 PHP