Open In App

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:  



bool IntlCalendar::add( int $field, int $amount ) 
bool intlcal_add( IntlCalendar $cal, int $field, int $amount )

Parameters:  

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






<?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
  
// 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


Article Tags :