获取指定年指定月的天数
// 获取指定年指定月的天数
public function getDaysInMonth($year, $month)
{
if ($month < 1 || $month > 12) {
return 0;
}
if ($year < 1) {
return 0;
}
return cal_days_in_month(CAL_GREGORIAN, $month, $year);
}获取指定年指定月的天数
// 获取指定年指定月的天数
public function getDaysInMonth($year, $month)
{
if ($month < 1 || $month > 12) {
return 0;
}
if ($year < 1) {
return 0;
}
return cal_days_in_month(CAL_GREGORIAN, $month, $year);
}