Risposte:
Richiede 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");
}
Questo produrrà tutti i giorni nel periodo definito tra $start
e $end
. Se si desidera includere il decimo, impostare $end
all'undicesimo. Puoi adattare il formato a tuo piacimento. Vedi il manuale di PHP per DatePeriod .
$begin->setTime(0,0); $end->setTime(12,0);
o l'inizializzazione con l'ora del giorno della data di inizio, poiché qualsiasi momento successivo a quello della data di fine includerà la data di fine nel ciclo. Non è la soluzione più elegante, ma è l'opzione migliore finché non c'è una bandiera corretta.
Questo include anche l'ultima data
$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");
}
Se non hai bisogno dell'ultima data, rimuovi =
dalla condizione.
$begin
sarà diverso dopo il loop. Questo ciclo modifica l'oggetto creato da new DateTime( "2015-07-03" )
. Ecco perché dovresti usare le versioni DateTimeImmutable. Ma hai bisogno di ulteriori modifiche per usarli.
La conversione in timestamp unix semplifica la matematica della data in 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
}
Quando si utilizza PHP con un fuso orario con ora legale, assicurarsi di aggiungere un orario diverso dalle 23:00, 00:00 o 1:00 per proteggersi dai giorni saltati o ripetuti.
Copia dall'esempio di php.net per un intervallo inclusivo :
$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);
o
$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);
Ecco un altro semplice -
/**
* 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;
}
Esempio:
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
)
Utente questa funzione: -
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;
}
Chiamata uso / funzione: -
Aumento di un giorno: -
dateRange($start, $end); //increment is set to 1 day.
Aumento per mese: -
dateRange($start, $end, "+1 month");//increase by one month
utilizzare il terzo parametro se si desidera impostare il formato della data: -
dateRange($start, $end, "+1 month", "Y-m-d H:i:s");//increase by one month and format is mysql datetime
ecco un modo:
$date = new Carbon();
$dtStart = $date->startOfMonth();
$dtEnd = $dtStart->copy()->endOfMonth();
$weekendsInMoth = [];
while ($dtStart->diffInDays($dtEnd)) {
if($dtStart->isWeekend()) {
$weekendsInMoth[] = $dtStart->copy();
}
$dtStart->addDay();
}
Il risultato di $ weekendInMoth è una serie di giorni di fine settimana!
$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"));
}
Puoi anche iterare in questo modo, The $_POST['date']
può essere ammaccato dalla tua app o dal tuo sito Web Invece di $_POST['date']
inserire la stringa qui "21-12-2019"
. Entrambi funzioneranno.
Se si utilizza Laravel e si desidera utilizzare Carbon, la soluzione corretta sarebbe la seguente:
$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");
}
Ricorda di aggiungere:
<?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)));
}
?>