php date strtotime的用法

Posted 侠岚之弋痕夕

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php date strtotime的用法相关的知识,希望对你有一定的参考价值。

1.上个月第一天及最后一天.
   echo date(‘Y-m-01‘, strtotime(‘-1 month‘));

   echo strtotime(date(‘Y-m-01 0:00:00‘, strtotime(‘-1 month‘)));  //月初第一天时间戳
   echo "<br/>";
   echo date(‘Y-m-t‘, strtotime(‘-1 month‘));
   echo "<br/>";
2.获取当月第一天及最后一天.
   $BeginDate=date(‘Y-m-01‘, strtotime(date("Y-m-d")));
   echo $BeginDate;
   echo "<br/>";
   echo date(‘Y-m-d‘, strtotime("$BeginDate +1 month -1 day"));
   echo "<br/>";
3.获取当天年份、月份、日及天数.
   echo " 本月共有:".date("t")."天";
   echo " 当前年份".date(‘Y‘);
   echo " 当前月份".date(‘m‘);
   echo " 当前几号".date(‘d‘);
   echo "<br/>";
4. 获取当月第一天及最后一天 
   function getthemonth($date)
   {
   $firstday = date(‘Y-m-01‘, strtotime($date));
   $lastday = date(‘Y-m-t‘, strtotime($date));
   return array($firstday,$lastday);
   }
   $today = date("Y-m-d");
   $day=getthemonth($today);
   echo "当月的第一天: ".$day[0]." 当月的最后一天: ".$day[1];
   echo "<br/>";

 

以上是关于php date strtotime的用法的主要内容,如果未能解决你的问题,请参考以下文章

php 中 date("Ymd",strtotime("24 Dec, 2014"))

php echo date日期如何加减

PHP date, strtotime, mktime处理

php 之 strtotime 使用需注意

如何修复与时区相关的 PHP 错误(function.strtotime 和 function.date)

PHP时间日期操作增减(date strtotime) 加一天 加一月