php获取当前月月初至月末的时间戳,上个月月初至月末的时间戳
生活随笔
收集整理的這篇文章主要介紹了
php获取当前月月初至月末的时间戳,上个月月初至月末的时间戳
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
當前月
<?php $thismonth = date('m'); $thisyear = date('Y'); $startDay = $thisyear . '-' . $thismonth . '-1'; $endDay = $thisyear . '-' . $thismonth . '-' . date('t', strtotime($startDay)); $b_time = strtotime($startDay); $e_time = strtotime($endDay);?
上一月
<?php $thismonth = date('m'); $thisyear = date('Y'); if ($thismonth == 1) {$lastmonth = 12;$lastyear = $thisyear - 1; } else {$lastmonth = $thismonth - 1;$lastyear = $thisyear; } $lastStartDay = $lastyear . '-' . $lastmonth . '-1'; $lastEndDay = $lastyear . '-' . $lastmonth . '-' . date('t', strtotime($lastStartDay)); $b_time = strtotime($lastStartDay); $e_time = strtotime($lastEndDay);這里對關鍵的就是date函數中的t,它是用來獲取當前月所含天數的,28天,29天,30天,31天。含有多少天,月底就是多少號。
轉載于:https://www.cnblogs.com/jiqing9006/p/5056891.html
總結
以上是生活随笔為你收集整理的php获取当前月月初至月末的时间戳,上个月月初至月末的时间戳的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: html禁止手机页面放大缩小
- 下一篇: 从UWP到SWIFT-开始