Wednesday, July 3, 2024
HomeLanguagesPhpPHP | IntlCalendar isEquivalentTo() Function

PHP | IntlCalendar isEquivalentTo() Function

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

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments