欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

php根据指定年月份获取月初月末的时间戳

程序员文章站 2022-05-15 09:55:23
...
function get_ctime($month){
        $month_start =strtotime($month) ;//指定年月份月初时间戳
        $BeginDate=date('Y-m-01', strtotime($month));
        $EndDate = date('Y-m-d', strtotime("$BeginDate +1 month -1 day"));
        $month_end= strtotime("next day", strtotime($EndDate)) - 1;//指定年月份月末时间戳
        $months=$month_start .' and '.$month_end;
        return $months;
}
$month = "2018-12";
echo get_ctime($month); // 输出

相关标签: PHP 时间戳