当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DateTimeImmutable add()用法及代码示例


DateTimeImmutable::add()函数是PHP中的一个内置函数,用于向创建的DateTimeImmutable对象添加若干天,几个月,几年,几小时和几秒钟。

用法:

DateTimeImmutable DateTimeImmutable::add( DateInterval $interval )

参数:此函数接受单个参数$interval,该参数保存要添加到给定DateTimeImmutable对象中的天数或月数或年数或小时或分钟或秒数。


Return Values:添加完成后,此函数返回最终的DateTimeImmutable对象。

以下示例程序旨在说明PHP中的DateTimeImmutable::add()函数:

程序1:该程序使用DateTimeImmutable::add()函数向DateTimeImmutable对象添加2天。

<?php 
// PHP program to illustrate DateTimeImmutable::add() 
// function 
    
// Creating a new DateTimeImmutable::add() object 
$datetime = new DateTimeImmutable("2019-10-03T10:00:00"); 
  
// Initializing a date interval of 2 days 
$interval = 'P2D'; 
  
// Calling the add() function 
$datetime = $datetime->add(new DateInterval($interval)); 
  
// Getting a new date time in the 
// format of 'Y-m-d H:i:s' 
echo $datetime->format('Y-m-d H:i:s'); 
?>
输出:
2019-10-05 10:00:00

程序2:该程序使用DateTimeImmutable::add()函数将“ P2Y5M2DT0H30M40S” DateInterval添加到DateTimeImmutable对象。

<?php 
// PHP program to illustrate DateTimeImmutable::add() 
// function 
    
// Creating a new DateTimeImmutable::add() object 
$datetime = new DateTimeImmutable("2019-10-03T10:00:00"); 
  
// Initializing a DateInterval object 
$interval = 'P2Y5M2DT0H30M40S'; 
  
// Calling the add() function 
$datetime = $datetime->add(new DateInterval($interval)); 
  
// Getting a new date time in the 
// format of 'Y-m-d H:i:s' 
echo $datetime->format('Y-m-d H:i:s'); 
?>
输出:
2022-03-05 10:30:40

参考: https://www.php.net/manual/en/datetimeimmutable.add.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | DateTimeImmutable add() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。