php获取一个月前的时间戳,三个月前的时间戳,一年前的时间戳

strtotime 非常强大的一个获取时间戳的函数

php获取一个月前的时间戳:

strtotime("-0 year -1 month -0 day");

php获取三个月前的时间戳:

strtotime("-0 year -3 month -0 day");

php获取六个月前的时间戳:

strtotime("-0 year -6 month -0 day");

php获取一年前的时间戳:

strtotime("-1 year -0 month -0 day");

 

 $tget7 = (time()+3600*8)-3600*24*7;//7天前的时间
  $date7 = strtotime("+7 day");//7天后的时间

   //当天时间
             $beginToday=mktime(0,0,0,date('m'),date('d'),date('Y'));
             $endToday=mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
             //获取昨日起始时间戳和结束时间戳
             $beginYesterday=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
             $endYesterday=mktime(0,0,0,date('m'),date('d'),date('Y'))-1;

 //获取本月起始时间戳和结束时间戳
             $beginThismonth=mktime(0,0,0,date('m'),1,date('Y'));
             $endThismonth=mktime(23,59,59,date('m'),date('t'),date('Y'));
             //上月开始时间 和 结束时间
             $startLastMonth = strtotime(date('Y-m-01 00:00:00',strtotime('-1 month')));
             //$endLastMonth = date("Y-m-d 23:59:59", strtotime(-date('d').'day'));
             $endLastMonth = strtotime(date('Ym01'))-1;
            

 

 

 

 

 

 

 

 

 

 

 

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值