当前位置:首页 > PHP教程 > php日期 > 列表

php获取当月最后一天函数分享

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-09 15:56:45 浏览: 评论:0 

这篇文章主要介绍了php获取当月最后一天函数分享,需要的朋友可以参考下

非常简单实用的函数,这里就不多废话了,直接奉上代码:

  1. /** 
  2.      *    日期-获取当月最后一天 
  3.      *  @return int 
  4.      */ 
  5.     public function get_lastday() { 
  6.         if($this->month==2) { 
  7.             $lastday = $this->is_leapyear($this->year) ? 29 : 28; 
  8.         } elseif($this->month==4 || $this->month==6 || $this->month==9 || $this->month==11) { 
  9.             $lastday = 30; 
  10.         } else { 
  11.             $lastday = 31; 
  12.         } 
  13.         return $lastday
  14.     } 
  15.     /** 
  16.      *    日期-是否是闰年 
  17.      *  @return int 
  18.      */ 
  19.     public function is_leapyear($year) { 
  20.         return date('L'$year); 
  21.     }

Tags: php获取当月最后一天

分享到: