Odpowiedzi:
Wymaga 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");
}
Spowoduje to wygenerowanie wszystkich dni w zdefiniowanym okresie między $start
i $end
. Jeśli chcesz dołączyć 10., ustaw$end
11. Możesz dostosować format do swoich potrzeb. Zobacz Podręcznik PHP dla DatePeriod .
$begin->setTime(0,0); $end->setTime(12,0);
lub inicjowanie z godziną dnia początkowego, ponieważ każda późniejsza niż data końcowa będzie zawierać datę końcową w pętli. Nie jest to najbardziej stylowa poprawka, ale jest to najlepsza opcja, o ile nie ma odpowiedniej flagi.
Dotyczy to również ostatniej daty
$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");
}
Jeśli nie potrzebujesz ostatniej daty, po prostu usuń =
warunek.
$begin
będzie inaczej . Ta pętla modyfikuje obiekt utworzony przez new DateTime( "2015-07-03" )
. Dlatego powinieneś używać wersji DateTimeImmutable. Ale potrzebujesz dalszych modyfikacji, aby z nich korzystać.
Konwersja na uniksowe znaczniki czasu ułatwia robienie matematyki dat w 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
}
Jeśli używasz PHP ze strefą czasową z czasem letnim, pamiętaj, aby dodać czas, który nie jest 23:00, 00:00 lub 1:00, aby zabezpieczyć się przed dniami pomijania lub powtarzania.
Skopiuj z próbki php.net dla zakresu obejmującego :
$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);
lub
$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);
Oto kolejna prosta -
/**
* 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;
}
Przykład:
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
)
Użyj tej funkcji: -
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;
}
Wywołanie użycia / funkcji: -
Zwiększ o jeden dzień:
dateRange($start, $end); //increment is set to 1 day.
Wzrost według miesiąca: -
dateRange($start, $end, "+1 month");//increase by one month
użyj trzeciego parametru, jeśli chcesz ustawić format daty: -
dateRange($start, $end, "+1 month", "Y-m-d H:i:s");//increase by one month and format is mysql datetime
Oto sposób:
$date = new Carbon();
$dtStart = $date->startOfMonth();
$dtEnd = $dtStart->copy()->endOfMonth();
$weekendsInMoth = [];
while ($dtStart->diffInDays($dtEnd)) {
if($dtStart->isWeekend()) {
$weekendsInMoth[] = $dtStart->copy();
}
$dtStart->addDay();
}
Wynikiem $ weekendsInMoth jest szereg dni weekendowych!
$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"));
}
Możesz również iterować w ten sposób: $_POST['date']
Może być wgnieciony z Twojej aplikacji lub witryny Zamiast tego $_POST['date']
możesz również umieścić tutaj swój ciąg "21-12-2019"
. Oba będą działać.
Jeśli używasz Laravela i chcesz używać węgla, poprawnym rozwiązaniem byłoby:
$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");
}
Pamiętaj, aby dodać:
<?php
$start_date = '2015-01-01';
$end_date = '2015-06-30';
while (strtotime($start_date) <= strtotime($end_date)) {
echo "$start_daten";
$start_date = date ("Y-m-d", strtotime("+1 days", strtotime($start_date)));
}
?>