두 날짜 사이의 월 나열
다양한 애플리케이션에서는 지정된 날짜 범위 내의 월을 나열하거나 반복해야 합니다. 이를 달성하기 위해 우리는 다양한 PHP 버전에 맞는 두 가지 PHP 솔루션을 제시합니다.
PHP 5.3 이상
<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>
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>
시작 날짜와 종료 날짜를 매월 1일로 수정하면 원하는 달의 전체 목록이 보장되어 현재 날짜가 해당 날짜보다 높을 경우 2월을 건너뛸 수 있는 경우를 방지할 수 있습니다. 마지막날.
위 내용은 PHP에서 두 날짜 사이의 월을 나열하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!