簡體   English   中英

我在 PHP 中有 2 個日期,如何運行一個 foreach 循環來經歷所有這些日子?

[英]I have 2 dates in PHP, how can I run a foreach loop to go through all of those days?

我從日期2010-05-01開始,以2010-05-10結束。 我如何在 PHP 中遍歷所有這些日期?

$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 手冊。 它需要 PHP 5.3。

這也包括最后日期

$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");
}

如果您不需要最后日期,只需從條件中刪除=

轉換為 unix 時間戳使得在 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 時,請確保添加不是 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" 兩者都會起作用。

<?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)));
    }

?>

如果您使用的 php 版本低於 8.2,並且沒有DatePeriod::INCLUDE_END_DATE常量。 我寫了一個返回\DateTimeImmutable數組的方法。

這適用於結束日期之前、相同或之后的開始日期。

    /**
     * @param DateTimeImmutable $start
     * @param DateTimeImmutable $end
     * @return array<\DateTimeImmutable>
     */
    public static function getRangeDays(\DateTimeImmutable $start, \DateTimeImmutable $end): array
    {
        $startDate = $start;
        $endDate = $end;
        $forwards = $endDate >= $startDate;
        $carryDate = $startDate;
        $days = [];
        while (true) {
            if (($forwards && $carryDate > $end) || (!$forwards && $carryDate < $end)) {
                break;
            }
            $days[] = $carryDate;

            if ($forwards) {
                $carryDate = $carryDate->modify('+1 day');
            } else {
                $carryDate = $carryDate->modify('- 1 day');
            }
        }

        return $days;
    }

如果您使用 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");
}

記得補充:

  • 使用碳\\碳;
  • 使用碳\\碳周期;

對於Carbon用戶

$startDay = Carbon::parse("2021-08-01");
$endDay= Carbon::parse("2021-08-05");
$period = $startDay->range($endDay, 1, 'day');

當我打印數據時

array:5 [▼
  0 => Carbon\Carbon @1627776000 {#1290 ▼
    #endOfTime: false
    #startOfTime: false
    #constructedObjectId: "0000000045f68b6a0000000030c488c5"
    #localMonthsOverflow: null
    #localYearsOverflow: null
    #localStrictModeEnabled: null
    #localHumanDiffOptions: null
    #localToStringFormat: null
    #localSerializer: null
    #localMacros: null
    #localGenericMacros: null
    #localFormatFunction: null
    #localTranslator: null
    #dumpProperties: array:3 [▶]
    #dumpLocale: null
    date: 2021-08-01 00:00:00.0 UTC (+00:00)
  }
  1 => Carbon\Carbon @1627862400 {#1291 ▼
    #endOfTime: false
    #startOfTime: false
    #constructedObjectId: "0000000045f68b6b0000000030c488c5"
    #localMonthsOverflow: null
    #localYearsOverflow: null
    #localStrictModeEnabled: null
    #localHumanDiffOptions: null
    #localToStringFormat: null
    #localSerializer: null
    #localMacros: null
    #localGenericMacros: null
    #localFormatFunction: null
    #localTranslator: null
    #dumpProperties: array:3 [▶]
    #dumpLocale: null
    date: 2021-08-02 00:00:00.0 UTC (+00:00)
  }
  2 => Carbon\Carbon @1627948800 {#1292 ▶}
  3 => Carbon\Carbon @1628035200 {#1293 ▶}
  4 => Carbon\Carbon @1628121600 {#1294 ▶}
]

這是使用dd($period->toArray()); period- dd($period->toArray()); Laravel 數據轉儲dd($period->toArray()); . 如果需要foreach語句,您現在可以遍歷$period

一個重要的注意事項- 它包括提供給方法的邊緣日期。

有關更酷的日期相關內容,請查看Carbon 文檔

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM