Home >Backend Development >PHP Tutorial >PHP process control and mathematical operation methods

PHP process control and mathematical operation methods

墨辰丷
墨辰丷Original
2018-06-07 16:47:352175browse

This article mainly introduces the methods of PHP process control and mathematical operations. Interested friends can refer to it. I hope it will be helpful to everyone.

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;
}

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

The function of using curl to forge IP in PHP

PHP simulates the response class in asp Method

php judgment of the current encoding and corresponding encoding conversion implementation skills

The above is the detailed content of PHP process control and mathematical operation methods. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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