博客列表 >tp查询本周、上周、本月

tp查询本周、上周、本月

夏日的烈风的博客
夏日的烈风的博客原创
2018年10月25日 14:24:581385浏览

<?php
//php获取今日开始时间戳和结束时间戳 
//当天时间
$where['time'] = array(array('egt',strtotime(date('Y-m-d',time())),  
 array('lt',strtotime(date('Y-m-d',time())).'+1 day'));
 // 本周时间
 $where['time'] = array(    array('egt',strtotime(date('Y-m-d',time())).'-'.date('w',time()).' day'),  
  array('lt',strtotime(date('Y-m-d',time())).'+1 week -'.date('w',time()).' day'););
  // 本月时间
  $where['time'] = array(    array('egt',strtotime(date('Y-m',time()))),    array('lt',strtotime(date('Y-m',time()).'+1 month')));
  // 本年时间
$where['time'] = array(    array('egt',strtotime(date('Y-01-01',time())),    array('lt',strtotime(date('Y-01-01',time()).'+1 year')));

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议