欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 日期,php_PHP教程

程序员文章站 2024-02-08 19:42:46
...

php 日期,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     
18     /**
19      *    日期-是否是闰年
20      *  @return int
21      */
22     public function is_leapyear($year) {
23         return date('L', $year);
24     }

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/951421.htmlTechArticlephp 日期,php 1 /* * 2 * 日期-获取当月最后一天 3 * @return int 4 */ 5 public function get_lastday() { 6 if ( $this -month==2 ) { 7 $lastday = $this -is_leapyear( $this...
相关标签: php