0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHP 年と月からその月の長さ(最終日)を取得する うるう年判定込

Posted at
function checkFinalDay($year,$month){
    $finalDay = [
        "1" => 31,
        "2" => 28,
        "3" => 31,
        "4" => 30,
        "5" => 31,
        "6" => 30,
        "7" => 31,
        "8" => 31,
        "9" => 30,
        "10" => 31,
        "11" => 30,
        "12" => 31,
    ];

    if( $year%4 == 0 && $year%100 != 0 || $year%400 == 0 {
        $finalDay["2"] = 29;
    }
    return $finalDay[$month];
}
0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?