PHP | IntlCalendar isEquivalentTo() Function Last Updated : 25 Sep, 2019 Comments Improve Suggest changes Like Article Like Report The IntlCalendar::isEquivalentTo() function is an inbuilt function in PHP which is used to check whether the given calendar is equal but for a different time. Syntax: Object oriented style bool IntlCalendar::isEquivalentTo( IntlCalendar $other ) Procedural style bool intlcal_is_equivalent_to( IntlCalendar $cal, IntlCalendar $other ) Parameters: This function uses two parameters as mentioned above and described below: $cal: This parameter holds the resource of IntlCalendar object. $other: This parameter holds the another calendar against which the comparison is to be perform. Return Value: This function returns TRUE if calendars are equivalent except possibly for their set time and return an error if the value of the parameter is not set. Below program illustrates the IntlCalendar::isEquivalentTo() function in PHP: Program: php <?php // Set the DateTime zone ini_set('date.timezone', 'Asia/Calcutta'); // Create an instance of IntlCalendar $calendar1 = IntlCalendar::createInstance('Asia/Calcutta'); // Create an instance of another IntlCalendar $calendar2 = IntlCalendar::createInstance(); // Check whether another calendar is equal // but for a different time var_dump($calendar1->isEquivalentTo($calendar2)); // Create a DateTime object $calendar1 = IntlCalendar::fromDateTime('2019-09-24'); // Set the date to another DateTime object $calendar2->set(2019, 8, 24); // Check whether another calendar is equal // but for a different time var_dump($calendar1->isEquivalentTo($calendar2)); ?> Output: bool(true) bool(true) Reference: https://www.php.net/manual/en/intlcalendar.isequivalentto.php Comment J jit_t Follow 0 Improve J jit_t Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-Intl Explore PHP Tutorial 8 min read BasicsPHP Syntax 4 min read PHP Variables 5 min read PHP | Functions 8 min read PHP Loops 4 min read ArrayPHP Arrays 5 min read PHP Associative Arrays 4 min read Multidimensional arrays in PHP 5 min read Sorting Arrays in PHP 4 min read OOPs & InterfacesPHP Classes 2 min read PHP | Constructors and Destructors 5 min read PHP Access Modifiers 4 min read Multiple Inheritance in PHP 4 min read MySQL DatabasePHP | MySQL Database Introduction 4 min read PHP Database connection 2 min read PHP | MySQL ( Creating Database ) 3 min read PHP | MySQL ( Creating Table ) 3 min read PHP AdvancePHP Superglobals 6 min read PHP | Regular Expressions 12 min read PHP Form Handling 4 min read PHP File Handling 4 min read PHP | Uploading File 3 min read PHP Cookies 9 min read PHP | Sessions 7 min read Like