php 根据周数获取本周的开始时间与最后时间

Posted ann_glx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 根据周数获取本周的开始时间与最后时间相关的知识,希望对你有一定的参考价值。

/**
     * 根据第几周获取本周的开始时间与最后时间
     * @param int $year 年份 $weeks = get_week($year)
     * @param 如获取第18周的开始时间$weeks[18][0]
     * @param 如获取第18周的最后时间$weeks[18][1]
    */
    static  public function get_week($year) {
        $year_start = $year . "-01-01";
        $year_end = $year . "-12-31";
        $startday = strtotime($year_start);
        if (intval(date(‘N‘, $startday)) != ‘1‘) {
            $startday = strtotime("next monday", strtotime($year_start)); //获取年第一周的日期
        }
        $year_mondy = date("Y-m-d", $startday); //获取年第一周的日期

        $endday = strtotime($year_end);
        if (intval(date(‘W‘, $endday)) == ‘7‘) {
            $endday = strtotime("last sunday", strtotime($year_end));
        }

        $num = intval(date(‘W‘, $endday));
        for ($i = 1; $i <= $num; $i++) {
            $j = $i -1;
            $start_date = date("Y-m-d", strtotime("$year_mondy $j week "));

            $end_day = date("Y-m-d", strtotime("$start_date +6 day"));

            $week_array[$i] = array (
                str_replace("-",
                "",
                $start_date
            ), str_replace("-", "", $end_day));
        }
        return $week_array;
    }

 

以上是关于php 根据周数获取本周的开始时间与最后时间的主要内容,如果未能解决你的问题,请参考以下文章

如果根据当前日期获取当前周日期和当前周日期

(干货)java中如何根据一个时间获取属于本年那一周,本周的开始时间以及最后一天时间。并且设置起始时间为周6.结束时间为周5

PHP 根据年、周数获取周的起止日期

php怎么获取本周的时间格式开始和结束

python代码根据时间获取周数(week of the year)

php一行代码获取本周一,本周日,上周一,上周日,本月一日,本月最后一日,上月一日,上月最后一日日期