编程语言
首页 > 编程语言> > PHP获取本月时间

PHP获取本月时间

作者:互联网

获取本月第一天到最后一天

function getthemonth($date)
   {
   $firstday = date('Y-m-01', strtotime($date));
   $lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day"));
   return array($firstday,$lastday);
   }
   //$today = date("Y-m-d");
    $today = '2020-2-1';
   $day=getthemonth($today);
   echo "当月的第一天: ".$day[0]." 当月的最后一天: ".$day[1];
   echo "<br/>";

 

获取本月第一天到今天

function getthemonth($date)
   {
   $firstday = date('Y-m-01', strtotime($date));
   $lastday = date('Y-m-d', strtotime($date));
   return array($firstday,$lastday);
   }
   //$today = date("Y-m-d");
    $today = '2020-2-6';
   $day=getthemonth($today);
   echo "当月的第一天: ".$day[0]." 当月的最后一天: ".$day[1];
   echo "<br/>";

标签:firstday,本月,strtotime,获取,date,lastday,PHP,day,today
来源: https://www.cnblogs.com/qczy/p/12049960.html