Friday, February 6, 2026
HomeLanguagesPHP | IntlCalendar add() Function

PHP | IntlCalendar add() Function

The IntlCalendar::add() function is an inbuilt function in PHP which is used to add a signed amount of time to a field.
 

Syntax:  

  • Object oriented style: 
bool IntlCalendar::add( int $field, int $amount ) 
  • Procedural style: 
bool intlcal_add( IntlCalendar $cal, int $field, int $amount )

Parameters:  

  • $cal: This parameter holds the IntlCalendar resource.
  • $field: This parameter holds the IntlCalendar date/time field constants. It holds the integer value lies between 0 to IntlCalendar::FIELD_COUNT.
  • $amount: The signed amount to add to the current field. If the value of amount is positive then it will moved forward and if the value of amount is negative then it will moved into the past.

Return Value: This function returns TRUE on success or FALSE on failure. 
Below programs illustrate the IntlCalendar::add() function in PHP:
Program 1:  

php




<?php
 
// Create an IntlCalendar from a DateTime object or string
$calendar = IntlCalendar::fromDateTime('2019-08-29 09:19:29');
 
// Add the date
$calendar->add(IntlCalendar::FIELD_MONTH, 1);
 
// Display the result date
echo IntlDateFormatter::formatObject($calendar), "\n";
 
// Add the date
$calendar->add(IntlCalendar::FIELD_WEEK_OF_MONTH, 1);
 
// Display the result output
echo IntlDateFormatter::formatObject($calendar);
 
?>


Output: 

Sep 29, 2019, 9:19:29 AM
Oct 6, 2019, 9:19:29 AM

 

Program 2: 

php




<?php
  
// Create an IntlCalendar from a DateTime object or string
$calendar = IntlCalendar::fromDateTime('2019-08-29 09:19:29');
  
// Add the date
$calendar->add(IntlCalendar::FIELD_YEAR, 5);
  
// Display the result date
echo IntlDateFormatter::formatObject($calendar), "\n";
  
// Add the date
$calendar->add(IntlCalendar::FIELD_YEAR, 10);
  
// Display the result output
echo IntlDateFormatter::formatObject($calendar), "\n";
  
// Add the date
$calendar->add(IntlCalendar::FIELD_HOUR_OF_DAY, 10);
  
// Display the result output
echo IntlDateFormatter::formatObject($calendar);
  
?>


Output: 

Aug 29, 2024, 9:19:29 AM
Aug 29, 2034, 9:19:29 AM
Aug 29, 2034, 7:19:29 PM

 

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

RELATED ARTICLES

Most Popular

Dominic
32491 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11987 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12075 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7237 POSTS0 COMMENTS
Thapelo Manthata
6947 POSTS0 COMMENTS
Umr Jansen
6933 POSTS0 COMMENTS