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


PHP DateTimeImmutable::sub()用法及代码示例


DateTimeImmutable::sub()函数是PHP中的内置函数,用于从创建的DateTimeImmutable对象中减去若干天,几个月,几年,几小时和几秒钟。

用法:

DateTimeImmutable::sub( interval )

参数:此函数接受参数间隔,该间隔是要从给定的DateTimeImmutable对象中减去的天数或月数或年数或小时数或分钟数或秒数。


返回值::此函数在减去后返回最终的日期时间。

以下示例程序旨在说明DateTimeImmutable::sub()函数:

程序1::此程序将天数减少2。

<?php 
// PHP program to illustrate DateTimeImmutable::sub() 
// function 
    
// Creating a new DateTimeImmutable() object 
$datetimeImmutable = new DateTimeImmutable('2019-10-07'); 
  
// Initialising a interval of 2 days 
$interval = 'P2D'; 
  
// Calling the DateTimeImmutable::sub() function 
$a = $datetimeImmutable->sub(new DateInterval($interval)); 
  
// Getting a new date time 
// format of 'Y-m-d' 
echo $a->format('Y-m-d'); 
?>

输出:

2019-10-05

程序2::此程序将月份减少5。

<?php 
// PHP program to illustrate DateTimeImmutable::sub() 
// function 
    
// Creating a new DateTimeImmutable() object 
$datetimeImmutable = new DateTimeImmutable('2019-10-07'); 
  
// Initialising a interval of 5 months 
$interval = 'P5M'; 
  
// Calling the DateTimeImmutable::sub() function 
$a = $datetimeImmutable->sub(new DateInterval($interval)); 
  
// Getting a new date time 
// format of 'Y-m-d' 
echo $a->format('Y-m-d'); 
?>

输出:

2019-05-07

参考



相关用法


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