Wednesday, October 8, 2025
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
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS