LonghornPHP 2026

IntlGregorianCalendar::isLeapYear

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

IntlGregorianCalendar::isLeapYearDetermine if the given year is a leap year

Description

Object-oriented style

public function IntlGregorianCalendar::isLeapYear(int $year): bool

Procedural style

function intlgregcal_is_leap_year(IntlGregorianCalendar $calendar, int $year): bool

Determines whether the given year is a leap year in the Gregorian calendar.

Parameters

calendar

An IntlGregorianCalendar instance.

year

The year to check.

Return Values

Returns true for leap years, false otherwise and on failure.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top