답변:
PHP5.3 필요 :
$begin = new DateTime('2010-05-01');
$end = new DateTime('2010-05-10');
$interval = DateInterval::createFromDateString('1 day');
$period = new DatePeriod($begin, $interval, $end);
foreach ($period as $dt) {
echo $dt->format("l Y-m-d H:i:s\n");
}
이 출력됩니다 사이에 정의 된 기간의 모든 일 $start
및 $end
. 10을 포함 시키 $end
려면 11로 설정하십시오 . 원하는대로 형식을 조정할 수 있습니다. DatePeriod에 대한 PHP 매뉴얼을 참조하십시오 .
$begin->setTime(0,0); $end->setTime(12,0);
또는 종료 날짜보다 늦은 시간이 시작 날짜의 시간으로 초기화되면 루프에 종료 날짜가 포함됩니다. 가장 세련된 수정은 아니지만 적절한 플래그가없는 한 최선의 선택입니다.
여기에는 마지막 날짜도 포함됩니다
$begin = new DateTime( "2015-07-03" );
$end = new DateTime( "2015-07-09" );
for($i = $begin; $i <= $end; $i->modify('+1 day')){
echo $i->format("Y-m-d");
}
마지막 날짜가 필요하지 않으면 =
조건에서 제거하십시오 .
$begin
할 것이다 다른 루프 후. 이 루프는에 의해 생성 된 객체를 수정합니다 new DateTime( "2015-07-03" )
. 따라서 DateTimeImmutable 버전을 사용해야하는 이유는 무엇입니까? 그러나 그것들을 사용하기 위해서는 약간의 수정이 필요합니다.
유닉스 타임 스탬프로 변환하면 PHP에서 날짜 계산을보다 쉽게 수행 할 수 있습니다.
$startTime = strtotime( '2010-05-01 12:00' );
$endTime = strtotime( '2010-05-10 12:00' );
// Loop between timestamps, 24 hours at a time
for ( $i = $startTime; $i <= $endTime; $i = $i + 86400 ) {
$thisDate = date( 'Y-m-d', $i ); // 2010-05-01, 2010-05-02, etc
}
시간대가 DST 인 PHP와 함께 PHP를 사용하는 경우, 건너 뛰거나 반복되는 날로부터 보호하기 위해 23:00, 00:00 또는 1:00이 아닌 시간을 추가하십시오.
포함 범위에 대한 php.net 샘플에서 복사하십시오 .
$begin = new DateTime( '2012-08-01' );
$end = new DateTime( '2012-08-31' );
$end = $end->modify( '+1 day' );
$interval = new DateInterval('P1D');
$daterange = new DatePeriod($begin, $interval ,$end);
foreach($daterange as $date){
echo $date->format("Ymd") . "<br>";
}
$startTime = strtotime('2010-05-01');
$endTime = strtotime('2010-05-10');
// Loop between timestamps, 1 day at a time
$i = 1;
do {
$newTime = strtotime('+'.$i++.' days',$startTime);
echo $newTime;
} while ($newTime < $endTime);
또는
$startTime = strtotime('2010-05-01');
$endTime = strtotime('2010-05-10');
// Loop between timestamps, 1 day at a time
do {
$startTime = strtotime('+1 day',$startTime);
echo $startTime;
} while ($startTime < $endTime);
여기 또 다른 간단한 것이 있습니다-
/**
* Date range
*
* @param $first
* @param $last
* @param string $step
* @param string $format
* @return array
*/
function dateRange( $first, $last, $step = '+1 day', $format = 'Y-m-d' ) {
$dates = [];
$current = strtotime( $first );
$last = strtotime( $last );
while( $current <= $last ) {
$dates[] = date( $format, $current );
$current = strtotime( $step, $current );
}
return $dates;
}
예:
print_r( dateRange( '2010-07-26', '2010-08-05') );
Array (
[0] => 2010-07-26
[1] => 2010-07-27
[2] => 2010-07-28
[3] => 2010-07-29
[4] => 2010-07-30
[5] => 2010-07-31
[6] => 2010-08-01
[7] => 2010-08-02
[8] => 2010-08-03
[9] => 2010-08-04
[10] => 2010-08-05
)
이 기능을 사용자 :-
function dateRange($first, $last, $step = '+1 day', $format = 'Y-m-d' ) {
$dates = array();
$current = strtotime($first);
$last = strtotime($last);
while( $current <= $last ) {
$dates[] = date($format, $current);
$current = strtotime($step, $current);
}
return $dates;
}
사용법 / 기능 호출 :-
하루 씩 증가 :-
dateRange($start, $end); //increment is set to 1 day.
월별 증가 :-
dateRange($start, $end, "+1 month");//increase by one month
날짜 형식을 설정하려면 세 번째 매개 변수를 사용하십시오.
dateRange($start, $end, "+1 month", "Y-m-d H:i:s");//increase by one month and format is mysql datetime
방법은 다음과 같습니다.
$date = new Carbon();
$dtStart = $date->startOfMonth();
$dtEnd = $dtStart->copy()->endOfMonth();
$weekendsInMoth = [];
while ($dtStart->diffInDays($dtEnd)) {
if($dtStart->isWeekend()) {
$weekendsInMoth[] = $dtStart->copy();
}
$dtStart->addDay();
}
$ weekendsInMoth의 결과는 주말의 배열입니다!
$date = new DateTime($_POST['date']);
$endDate = date_add(new DateTime($_POST['date']),date_interval_create_from_date_string("7 days"));
while ($date <= $endDate) {
print date_format($date,'d-m-Y')." AND END DATE IS : ".date_format($endDate,'d-m-Y')."\n";
date_add($date,date_interval_create_from_date_string("1 days"));
}
당신은 또한 이렇게 반복 $_POST['date']
할 수 있습니다 , 당신의 응용 프로그램이나 웹 사이트에서 덴트 할 수 있습니다 대신 $_POST['date']
당신은 여기에 문자열을 배치 할 수 있습니다 "21-12-2019"
. 둘 다 작동합니다.
Laravel을 사용하고 Carbon을 사용하려는 경우 올바른 해결책은 다음과 같습니다.
$start_date = Carbon::createFromFormat('Y-m-d', '2020-01-01');
$end_date = Carbon::createFromFormat('Y-m-d', '2020-01-31');
$period = new CarbonPeriod($start_date, '1 day', $end_date);
foreach ($period as $dt) {
echo $dt->format("l Y-m-d H:i:s\n");
}
다음을 추가해야합니다.