|
IntlCalendar::isEquivalentToWhether another calendar is equal but for a different time DescriptionObject-oriented style
public bool IntlCalendar::isEquivalentTo(IntlCalendar
$other )Procedural style bool intlcal_is_equivalent_to(IntlCalendar
$calendar , IntlCalendar $other )Returns whether this and the given object are equivalent for all purposes except as to the time they have set. The locales do not have to match, as long as no change in behavior results from such mismatch. This includes the timezone, whether the lenient mode is set, the repeated and skipped wall time settings, the days of the week when the weekend starts and ceases and the times where such transitions occur. It may also include other calendar specific settings, such as the Gregorian/Julian transition instant. Parameters
Return Values
Assuming there are no argument errors, returns Examples
Example #1 IntlCalendar::isEquivalentTo
The above example will output: bool(true) bool(false) int(2) int(1) See Also
|