1

次のコード行を使用して、一部のレポートで生成しようとしている日付を取得していますが、いくつかの場合を除いて正常に動作しているように見えますが、その理由がわかりません。

// what week numbers belong to which period
$adminconfig_periods = array(
        1=>array(1,2,3,4),
        2=>array(5,6,7,8,9),
        3=>array(10,11,12,13),
        4=>array(14,15,16,17),
        5=>array(18,19,20,21,22),
        6=>array(23,24,25,26),
        7=>array(27,28,29,30),
        8=>array(31,32,33,34,35),
        9=>array(36,37,38,39),
        10=>array(40,41,42,43),
        11=>array(44,45,46,47,48),
        12=>array(49,50,51,52,53)
    );

    /**
     * Get period no for week no
     *
     * @param string week the week 
     * @return int - the period no
     */             
     function getPeriodForWeek($week) {
        global $adminconfig_periods;
        $foundperiod = false;
        $period = 1;
        while(!$foundperiod) {
            if(in_array($week, $adminconfig_periods[$period])) {
                $foundperiod = true;
            } else {
                $period ++; 
            }
        }
        return $period;
    }


    $wA        = $_GET['wA'];
    $yA        = $_GET['yA'];


    $prev_period = '';
    $next_period = '';



    if (!isset($wA) || !isset($yA)) {
        // period and year aren't set so do it for current period

        // period starts on first Sunday of the first week in the period and ends on the last Saturday of the last week in the period
        $week = date('W');
        $period = getPeriodForWeek($week);

        $wA  = date('m');
        $yA  = date('Y');

    }
    else {
        // period and year are set

        // period starts on first Sunday of the first week in the period and ends on the last Saturday of the last week in the period

        $period = $wA;
    }


        // get date of first Sunday of the first week in this period
        $period_start_week = $adminconfig_periods[$period][0];


        // get the Sunday of this week
        $period_start = date('Y-m-d', strtotime($yA  . 'W' . $period_start_week  . '0'));


        // get date of last Saturday of the last week in this period
        $period_length = count($adminconfig_periods[$period]);
        // array indexes start from 0 so we need to take one off this value
        $last_element = $period_length - 1;

        $period_end_week = $adminconfig_periods[$period][$last_element];


        // get the Saturday of this week
        $period_end = date('Y-m-d', strtotime($yA  . 'W' . $period_end_week  . '6'));           

このページには、期間と年数を変更するための選択メニュー コントロールがいくつかあり、特定の期間になると奇妙な日付が表示されます。

期間は非常に紛らわしいですが、質問がある場合は遠慮なく質問してください。

Period | What it Should Be       | Actual Result
    11 | 28/10/2012 - 01/12/2012 | 28/10/2012 - 01/12/2012
    10 | 30/09/2012 - 27/10/2012 | 30/09/2012 - 27/10/2012
    09 | 02/09/2012 - 29/09/2012 | 02/09/2012 - 29/09/2012
    08 | 29/07/2012 - 01/09/2012 | 29/07/2012 - 01/09/2012
    07 | 01/07/2012 - 28/07/2012 | 01/07/2012 - 28/07/2012
    06 | 03/06/2012 - 30/06/2012 | 03/06/2012 - 30/06/2012
    05 | 29/04/2012 - 02/06/2012 | 29/04/2012 - 02/06/2012
    04 | 01/04/2012 - 28/04/2012 | 01/04/2012 - 28/04/2012
    03 | 04/03/2012 - 31/03/2012 | 04/03/2012 - 31/03/2012
    02 | 29/01/2012 - 03/02/2012 | 10/12/2012 - 01/01/1970
    01 | 01/01/2012 - 28/01/2012 | 05/03/2012 - 12/11/2012

ご覧のとおり、何らかの理由でピリオド 1 とピリオド 2 が狂っているように見えますが、その理由はわかりません。

パラメータは次の方法で渡されます。パラメータが?wA=1&yA=2012設定されていない場合は、現在の月と期間が使用されます。

推測すると、うるう年と関係があるかもしれませんが、コードはそれを自動的に処理できると思いましたか? 誰が知っているのか、うまくいけば、いくつかの余分な目で、私が見逃したばかげたことを見つけることができます.

日付をエコーするコード

date("d/m/Y", strtotime($period_start)) . ' - ' . date("d/m/Y", strtotime($period_end)) .')';
4

1 に答える 1

1

エラーはこれらの2行からのものです

$period_start = date('Y-m-d', strtotime($yA  . 'W' . $period_start_week  . '0'));
$period_end = date('Y-m-d', strtotime($yA  . 'W' . $period_end_week  . '6'));

たとえば、週番号が2の場合、それに6を追加すると、 26 (週 26) になるため、1 桁の場合は左側にゼロを追加する必要があります。str_pad()でそれをしましょう:

$period_start = date('Y-m-d', strtotime($yA  . 'W' . str_pad($period_start_week, 2, 0, STR_PAD_LEFT) . '0'));
$period_end = date('Y-m-d', strtotime($yA  . 'W' . str_pad($period_end_week, 2, 0, STR_PAD_LEFT) . '6'));
于 2012-11-19T12:52:01.167 に答える