码迷,mamicode.com
首页 > Web开发 > 详细

php判断该月有多少天

时间:2018-08-16 19:40:49      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:检测   time   mkt   输入   amp   ==   lse   获取   array   


  1. /**
  2.  * 判断某年的某月有多少天
  3.  * @return [type] [description]
  4.  */
  5. function daysInmonth($year=‘‘,$month=‘‘){
  6.      if(empty($year)) $year = date(‘Y‘);
  7.      if(empty($month)) $month = date(‘m‘);
  8.      if (in_array($month, array(1, 3, 5, 7, 8, ‘01‘, ‘03‘, ‘05‘, ‘07‘, ‘08‘, 10, 12))) { 
  9.             $text = ‘31‘;         //月大
  10. }elseif ($month == 2 || $month == ‘02‘){ 
  11. if ( ($year % 400 == 0) || ( ($year % 4 == 0) && ($year % 100 !== 0) ) ) {   //判断是否是闰年 
  12.     $text = ‘29‘;        //闰年2
  13. } else { 
  14. $text = ‘28‘;          //平年2
  15. } else { 
  16. $text = ‘30‘;             //月小
  17. }
  18. return $text;

21.}

 


/**

  1.  * 判断某年的某月有多少天
  2.  * @return [type] [description]
  3.  */ 
  4. function daysInmonth1($year=‘‘,$month=‘‘){
  5.      if(empty($year)) $year = date(‘Y‘); 
  6.     if(empty($month)) $month = date(‘m‘);
  7.      $day = ‘01‘;
  8.     
  9.      //检测日期是否合法
  10. if(!checkdate($month,$day,$year)) return ‘输入的时间有误‘;
  11. //获取当年当月第一天的时间戳(,,,,,)
  12. $timestamp = mktime(0,0,0,$month,$day,$year);
  13. $result = date(‘t‘,$timestamp);
  14. return $result;

16.}

 

php判断该月有多少天

标签:检测   time   mkt   输入   amp   ==   lse   获取   array   

原文地址:https://www.cnblogs.com/930115586qq/p/9488899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!