CI_Calendar::get_total_days PHP Method

get_total_days() public method

Total days in a given month
public get_total_days ( $month, $year ) : integer
return integer
    public function get_total_days($month, $year)
    {
        $this->CI->load->helper('date');
        return days_in_month($month, $year);
    }