두 날짜 사이의 월 나열
임의의 두 날짜 사이의 월을 열거하는 것은 간단한 작업처럼 보일 수 있지만 처리할 때 더 복잡해집니다. 엣지 케이스 포함. 이 문제를 효과적으로 해결하기 위해 다양한 프로그래밍 기술을 활용할 수 있습니다.
접근 방법 1: PHP 내장 함수 사용
PHP 버전 5.3 이상의 경우 다음을 활용할 수 있습니다. DateTime 및 DatePeriod 클래스.
<code class="php">$start = new DateTime('2010-12-02'); $start->modify('first day of this month'); $end = new DateTime('2012-05-06'); $end->modify('first day of next month'); $interval = DateInterval::createFromDateString('1 month'); $period = new DatePeriod($start, $interval, $end); foreach ($period as $dt) { echo $dt->format("Y-m") . "<br>\n"; }</code>
접근 방법 2: 순수 PHP 사용(PHP 5.4 이상)
PHP 5.4 이상을 사용하는 경우 코드는 다음과 같습니다.
<code class="php">$start = (new DateTime('2010-12-02'))->modify('first day of this month'); $end = (new DateTime('2012-05-06'))->modify('first day of next month'); $interval = DateInterval::createFromDateString('1 month'); $period = new DatePeriod($start, $interval, $end); foreach ($period as $dt) { echo $dt->format("Y-m") . "<br>\n"; }</code>
고려 사항:
위 내용은 PHP에서 두 날짜 사이의 월을 어떻게 나열합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!