PHP method to get the maximum number of days (last day) of a certain month, the last day of the month_PHP tutorial

WBOY
Release: 2016-07-13 09:45:43
Original
865 people have browsed it

How to get the maximum number of days (last day) of a certain month in PHP, the last day of the month

The example in this article describes the method of getting the maximum number of days (last day) of a certain month in PHP. Share it with everyone for your reference. The details are as follows:

//获取 某个月的最大天数(最后一天)
function getMonthLastDay($month, $year) {
 switch ($month) {
  case 4 :
  case 6 :
  case 9 :
  case 11 :
   $days = 30;
   break;
  case 2 :
   if ($year % 4 == 0) {
    if ($year % 100 == 0) {
     $days = $year % 400 == 0 ? 29 : 28;
    } else {
     $days = 29;
    }
   } else {
    $days = 28;
   }
   break;
  default :
   $days = 31;
   break;
 }
 return $days;
}

Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1039204.htmlTechArticleHow to get the maximum number of days (last day) of a certain month in PHP. The last day of the day. This article describes the example of PHP getting the maximum number of days in a certain month. Method for the maximum number of days in a month (last day). Share it with everyone for everyone...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template