PHP obtains the maximum number of days of a month (the last day), and the last day of the number of days _ PHP Tutorial

Source: Internet
Author: User
PHP obtains the maximum number of days (the last day) of a month. PHP obtains the maximum number of days of a month (the last day). the last day of the number of days this article describes how PHP obtains the maximum number of days of a month (the last day. Share with you how PHP can obtain the maximum number of days of a month (the last day ).

This example describes how to obtain the maximum number of days of a month (the last day) by PHP. Share it with you for your reference. The details are as follows:

// Obtain the maximum number of days of a month (the last day) 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 ;}

I hope this article will help you with php programming.

The last day. This document describes how PHP obtains the maximum number of days (the last day) of a month. Share it with you...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.