php获取当月最后一天函数分享
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-09 15:56:45 浏览: 评论:0
这篇文章主要介绍了php获取当月最后一天函数分享,需要的朋友可以参考下
非常简单实用的函数,这里就不多废话了,直接奉上代码:
- /**
- * 日期-获取当月最后一天
- * @return int
- */
- public function get_lastday() {
- if($this->month==2) {
- $lastday = $this->is_leapyear($this->year) ? 29 : 28;
- } elseif($this->month==4 || $this->month==6 || $this->month==9 || $this->month==11) {
- $lastday = 30;
- } else {
- $lastday = 31;
- }
- return $lastday;
- }
- /**
- * 日期-是否是闰年
- * @return int
- */
- public function is_leapyear($year) {
- return date('L', $year);
- }
Tags: php获取当月最后一天
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)