1

PHPで日付範囲内の2週間の開始日と終了日を取得したいです。

週の始まり = 日曜日、週末 = 土曜日

ie) たとえば、日付範囲が

$start = '2013-01-01' および
$end ='2013-02-28'

必要な結果

開始日 --> 2013-01-01 終了日 --> 2013-01-12
開始日 --> 2013-01-13 終了日 --> 2013-01-26
開始日 --> 2013-01-27終了日 --> 2013-02-09
開始日 --> 2013-02-10 終了日 --> 2013-02-23
開始日 --> 2013-02-24 終了日 --> 2013-02-28

コード

  <?php
$st = '2013-01-01';
$et ='2013-02-28';
$start_date = date('Y-m-d', strtotime($st));
$end_date = date('Y-m-d', strtotime($et));
$end_date1 = date('Y-m-d', strtotime($et. '+ 6 days'));

$weekfrom = array();
$weekto = array();

for($date = $start_date; $date <= $end_date1; $date = date('Y-m-d', strtotime($date. ' + 14 days')))
{

    $week =  date('W', strtotime($date));
    $year =  date('Y', strtotime($date));
    $from = date("Y-m-d", strtotime("{$year}-W{$week}+1")); //Returns the date of monday in week
    if($from < $start_date) $from = $start_date;
    $to = date("Y-m-d", strtotime("{$year}-W{$week}-6"));   //Returns the date of sunday in week
    if($to > $end_date)
     {
        $to = $end_date;       

     }
    if($from < $to)
    {
    array_push($weekfrom,$from);
    array_push($weekto,$to);
    }

}
$n = count($weekfrom);

for($i = 0;$i<$n;$i++)
{
  echo "Start Date-->".$weekfrom[$i];
  echo " End Date -->".$weekto[$i]."\n";
}


?>

現在の結果

開始日 --> 2013-01-01 終了日 --> 2013-01-05
開始日 --> 2013-01-13 終了日 --> 2013-01-19
開始日 --> 2013-01-27終了日 --> 2013-02-02
開始日 --> 2013-02-10 終了日 --> 2013-02-16
開始日 --> 2013-02-24 終了日 --> 2013-02-28

デモ

現在の結果では、開始日は正しいですが、課題は終了日内にあります。問題を見つけるのを手伝ってください

4

2 に答える 2

2

これに変えるだけで…

$to = date("Y-m-d", strtotime("{$year}-W{$week}-6 + 1 week"));

コードパッドを参照

于 2013-02-05T09:56:42.260 に答える
0

初日:

if is Sunday == true
 today
else
 strtotime('last sunday');

最終日:

if is Saturday == true
 today
else
 strtotime('next saturday');
于 2013-02-05T09:53:11.173 に答える