Home > 月と年の生成


PHPで2つ以上の日付から月と年を生成する方法

DateTime クラスを使用する方法:$date1 = new DateTime('2022-01-15'); $date2 = new DateTime('2023-05-20'); $month1 = $date1->format('m'); $year1 = $date1->format('Y'); $month2 = $date2->format('m'); $year2 = $date2->format('Y'); echo "Date 1: $month1/$year1" . PHP_EOL; echo "Date 2: $month2/$year2" .>>More