php获取当前月 上个月月初及月末时间戳 php获取当前月与上个月月初及月末时间戳的方法
牛逼的霍啸林 人气:0想了解php获取当前月与上个月月初及月末时间戳的方法的相关内容吗,牛逼的霍啸林在本文为您仔细讲解php获取当前月 上个月月初及月末时间戳的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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天。含有多少天,月底就是多少号。
PS:本站还提供了一个Unix时间戳转换工具,包含了各种常见语言针对时间戳的操作方法,提供给大家参考:
Unix时间戳(timestamp)转换工具:
http://tools.softyun.net/code/unixtime
希望本文所述对大家PHP程序设计有所帮助。
加载全部内容