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
相關用法
- PHP DateTimeImmutable::sub()用法及代碼示例
- PHP DateTimeImmutable modify()用法及代碼示例
- PHP DateTimeImmutable::setTimezone()用法及代碼示例
- PHP DateTimeImmutable setTime()用法及代碼示例
- PHP DateTimeImmutable setISODate()用法及代碼示例
- PHP DateTimeImmutable setDate()用法及代碼示例
- PHP DateTimeImmutable setTimestamp()用法及代碼示例
- p5.js pan()用法及代碼示例
- p5.js box()用法及代碼示例
- PHP exp()用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | DateTimeImmutable add() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。