두 날짜 사이의 월 나열
다양한 애플리케이션에서는 지정된 날짜 범위 내의 월을 나열하거나 반복해야 합니다. 이를 달성하기 위해 우리는 다양한 PHP 버전에 맞는 두 가지 PHP 솔루션을 제시합니다.
PHP 5.3 이상
$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") . "
\n";
}
PHP 5.4 이상
$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") . "
\n";
}
시작 날짜와 종료 날짜를 매월 1일로 수정하면 원하는 달의 전체 목록이 보장되어 현재 날짜가 마지막 날짜보다 높을 경우 2월을 건너뛸 수 있는 경우를 방지할 수 있습니다.
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3