日期所在月的天数
* @return int 添加
*/
公共函数 daysOfMonth ($year=NULL,$month=NULL) {
if ($year===NULL) {
$year = $this->getPart('yy');
}
if ($month===NULL) {
$month = $this->getPart('mm');
}
如果($月==2)
{
if (($year % 4 == 0 && $year % 100 != 0) || $year % 400 == 0)
$结果 = 29;
其他
$结果 = 28;
}
elseif ($month == 4 || $month == 6 || $month == 9 || $month == 11)
$结果 = 30;
其他
$结果 = 31;
返回$结果;