PHP获取本周本月第一天、最后一天时间戳的代码

WBOY
Release: 2016-06-20 13:03:25
Original
1080 people have browsed it

获取本周第一天/最后一天的时间戳

 $year = date("Y");
 $month = date("m");
 $day = date('w');
 $nowMonthDay = date("t");

 $firstday = date('d') - $day;
 if(substr($firstday,0,1) == "-"){
  $firstMonth = $month - 1;
  $lastMonthDay = date("t",$firstMonth);
  $firstday = $lastMonthDay - substr($firstday,1);
  $time_1 = strtotime($year."-".$firstMonth."-".$firstday);
 }else{
  $time_1 = strtotime($year."-".$month."-".$firstday);
 }
   
 $lastday = date('d') + (7 - $day);
 if($lastday > $nowMonthDay){
  $lastday = $lastday - $nowMonthDay;
  $lastMonth = $month + 1;
  $time_2 = strtotime($year."-".$lastMonth."-".$lastday);
 }else{
  $time_2 = strtotime($year."-".$month."-".$lastday);
 }
Copy after login



获取本月第一天/最后一天的时间戳

 $year = date("Y");
 $month = date("m");
 $allday = date("t");
 $strat_time = strtotime($year."-".$month."-1");
 $end_time = strtotime($year."-".$month."-".$allday);
Copy after login

 


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template