php 获取当前月份的开始结束日期

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取当前月份的开始结束日期相关的知识,希望对你有一定的参考价值。


    public static function getCurrentMonth()
    {
        //当前月份
        $sdefaultDate = date("Y-m");
        $month_start = strtotime($sdefaultDate);
        $nextMonth = strtotime('+1 month',$month_start);
        $month_end = $nextMonth - 1;
        return [
            'start' => $month_start,
            'end' => $month_end
        ];
    }

以上是关于php 获取当前月份的开始结束日期的主要内容,如果未能解决你的问题,请参考以下文章

php 获取开始日期与结束日期之间所有月份

Js计算当前日,当前周开始结束时间,当前月份,当前年份

php 获取当前周的开始结束日期

php获取本周开始日期和结束日期的方法

在php中获取给定月份和年份的开始和结束unix时间戳

使用 PHP 使用两个日期字段和当前月份选择表条目