示例#1
0
 /**
  * Total days in a given month
  *
  * @param	int	the month
  * @param	int	the year
  * @return	int
  */
 public function get_total_days($month, $year)
 {
     return Date::days_in_month($month, $year);
 }