[php日期所在月的天数]php日期所在月的天数

时间:2016-03-17  来源:时间日期  阅读:

php日期所在月的天数

 public function daysOfMonth ($year=NULL,$month=NULL) {
  if ($year===NULL) {
   $year = $this->getPart("yy");
  }
  if ($month===NULL) {
   $month = $this->getPart("mm");
  }
  if ($month==2)
  {
   if (($year % 4 == 0 && $year % 100 != 0) || $year %

400 == 0)
    $result = 29;
   else
    $result = 28;
  }
  elseif ($month == 4 || $month == 6 || $month == 9 || $month

== 11)
   $result = 30;
  else
   $result = 31;
  return $result;
 }

[php日期所在月的天数]php日期所在月的天数

http://m.bbyears.com/wangyetexiao/22481.html

推荐访问:
相关阅读 猜你喜欢
本类排行 本类最新