̃Gg[͂ĂȃubN}[Nɒlj

PHP :: イディオム / 閏年(うるう年)の判定



function isLeapYear($year)
{
    return ((($year % 4) == 0) && ((($year % 100) != 0) || (($year % 400) == 0)));
}



programming/php/idiom/is_leap_year.txt