美文网首页
php获取指定时间戳所在的月份的开始时间戳和结束时间戳

php获取指定时间戳所在的月份的开始时间戳和结束时间戳

作者: 风度翩翩的程序猿 | 来源:发表于2022-04-22 13:02 被阅读0次
/**
  传入一个时间戳
    * 获取指定时间戳所在的月份的开始时间戳和结束时间戳
    
    * @param int $timestamp
    
    * @return array(开始时间,结束时间)
    
    */
    function getMonthBeginAndEnd($timestamp = 0) {
        $timestamp = $timestamp ? $timestamp : time();
        $year = date('Y', $timestamp);
        $month = date('m', $timestamp);
        $d = date('t', strtotime($year . '-' . $month));
        return ['begin' => strtotime($year . '-' . $month), 'end' => mktime(23, 59, 59, $month, $d, $year)];
    }

相关文章

网友评论

      本文标题:php获取指定时间戳所在的月份的开始时间戳和结束时间戳

      本文链接:https://www.haomeiwen.com/subject/qhqnertx.html