Help for this page

Select Code to Download


  1. or download this
        if ($month == 2) 
        {
    ...
                return 29;
            }
        }
    
  2. or download this
    if( 2 == $month )
    {
        return 29 if 0 == $year % 4 and 0 != $year % 100 
                     or 0 == $year % 400;
    }