编程语言
首页 > 编程语言> > php 获取当前时间一周日期

php 获取当前时间一周日期

作者:互联网

/**
 * 获取当前时间一周日期
 */
function get_now_week() {
    $now_week = date('w');

    $timestamp = time();

    if($now_week == 0){
        $timestamp = $timestamp - 86400;
    }

    return [
        date('Y-m-d', strtotime("this week Monday", $timestamp)),
        date('Y-m-d', strtotime("this week Tuesday", $timestamp)),
        date('Y-m-d', strtotime("this week Wednesday", $timestamp)),
        date('Y-m-d', strtotime("this week Thursday", $timestamp)),
        date('Y-m-d', strtotime("this week Friday", $timestamp)),
        date('Y-m-d', strtotime("this week Saturday", $timestamp)),
        date('Y-m-d', strtotime("this week Sunday", $timestamp)),
    ];
}

标签:week,now,timestamp,strtotime,获取,日期,date,php
来源: https://blog.csdn.net/qq_21521075/article/details/119106875