Wednesday, November 19, 2025
HomeLanguagesPHP | DateTimeImmutable add() Function

PHP | DateTimeImmutable add() Function

The DateTimeImmutable::add() function is an inbuilt function in PHP which is used to add a number of days, months, years, hours, minutes and seconds to a created DateTimeImmutable object.

Syntax:

DateTimeImmutable DateTimeImmutable::add( DateInterval $interval )

Parameters: This function accepts a single parameter $interval which holds the number of days or months or years or hours or minutes or seconds which are going to be added to the given DateTimeImmutable object.

Return Values: This function returns the final DateTimeImmutable object after addition is done.

Below programs illustrate the DateTimeImmutable::add() function in PHP:

Program 1: This program uses DateTimeImmutable::add() function to add 2 days to the DateTimeImmutable object.




<?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');
?>


Output:

2019-10-05 10:00:00

Program 2: This program uses DateTimeImmutable::add() function to add ‘P2Y5M2DT0H30M40S’ DateInterval to the DateTimeImmutable object.




<?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');
?>


Output:

2022-03-05 10:30:40

Reference: https://www.php.net/manual/en/datetimeimmutable.add.php

RELATED ARTICLES

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6775 POSTS0 COMMENTS
Nicole Veronica
11924 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6903 POSTS0 COMMENTS
Ted Musemwa
7159 POSTS0 COMMENTS
Thapelo Manthata
6859 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS