thinkphp 查询当天 ,本周,本月,本季度,本年度,全部, 数据方法

数据库字段是createtime 里面保存的是时间戳

<?php
/*
*按今天,本周,本月,本季度,本年,全部查询预约单数据
* $day 代表查询条件 $cid 代表 公司id
*返回array $data 查询条件 数组
*/
class ReserveModel extends BaseModel {
public function find_createtime($day,$cid){
//查询当天数据
if($day==1){
$today=strtotime(date(‘Y-m-d 00:00:00‘));
$data[‘cid‘]=$cid;
$data[‘createtime‘] = array(‘egt‘,$today);
return $data;
//查询本周数据
}else if($day==2){
$arr=array();
$arr=getdate();
$num=$arr[‘wday‘];
$start=time()-($num-1)*24*60*60;
$end=time()+(7-$num)*24*60*60;
$data[‘cid‘]=$cid;
$data[‘createtime‘] = array(‘between‘,array($start,$end));
return $data;
//查询本月数据
}else if($day==3){
$start=strtotime(date(‘Y-m-01 00:00:00‘));
$end = strtotime(date(‘Y-m-d H:i:s‘));
$data[‘cid‘]=$cid;
$data[‘createtime‘] = array(‘between‘,array($start,$end));
return $data;
//查询本季度数据
}else if($day==4){
$month=date(‘m‘);
if($month==1 || $month==2 ||$month==3){
$start=strtotime(date(‘Y-01-01 00:00:00‘));
$end=strtotime(date("Y-03-31 23:59:59"));
}elseif($month==4 || $month==5 ||$month==6){
$start=strtotime(date(‘Y-04-01 00:00:00‘));
$end=strtotime(date("Y-06-30 23:59:59"));
}elseif($month==7 || $month==8 ||$month==9){
$start=strtotime(date(‘Y-07-01 00:00:00‘));
$end=strtotime(date("Y-09-30 23:59:59"));
}else{
$start=strtotime(date(‘Y-10-01 00:00:00‘));
$end=strtotime(date("Y-12-31 23:59:59"));
}
$data[‘cid‘]=$cid;
$data[‘createtime‘] = array(‘between‘,array($start,$end));
return $data;
//查询本年度数据
}else if($day==5){
$year=strtotime(date(‘Y-01-01 00:00:00‘));
$data[‘cid‘]=$cid;
$data[‘createtime‘] = array(‘egt‘,$year);
return $data;
//全部数据
}else{
$data[‘cid‘]=$cid;
return $data;
}
}
}
?>

然后再CompanyAction.class.php中写

$list=$Shop->where($data)->select();

$this->list=$list;

$this->display();

数据就查找出来了。。。

时间: 2024-10-12 18:55:34

thinkphp 查询当天 ,本周,本月,本季度,本年度,全部, 数据方法的相关文章

PHP 时间获取本周 本月 本季度用法

<?php        $week_begin = mktime(0, 0, 0,date("m"),date("d")-date("w")+1,date("Y"));$week_end = mktime(23,59,59,date("m"),date("d")-date("w")+7,date("Y")); echo $week_begi

mysql 查询当天、昨天、本周、上周、本月、上月、今年、去年数据

mysql 查询当天数据 mysql查询今天.昨天.7天.近30天.本月.上一月 数据 今天 select * from 表名 where to_days(时间字段名) = to_days(now()); 昨天 SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) = 1 近7天 SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(时间字段名) 查询当

SQL 查询当天,本月,本周的记录

本文转载自Crazy Coder SELECT * FROM 表 WHERE CONVERT(Nvarchar, dateandtime, 111) = CONVERT(Nvarchar, GETDATE(), 111)   ORDER BY dateandtime DESC 本月记录 SELECT * FROM 表 WHERE datediff(month,[dateadd],getdate())=0 本周记录 SELECT * FROM 表 WHERE datediff(week,[date

Sql 查询当天、本周、本月记录

Sql 查询当天.本周.本月记录--查询当天: [sql] view plaincopyprint?select * from info where DateDiff(dd,datetime,getdate())=0 --查询24小时内的: [sql] view plaincopyprint?select * from info where DateDiff(hh,datetime,getDate())<=24 --info为表名,datetime为数据库中的字段值 --查询当天:[sql] v

Sql 查询当天、本周、本月记录、上周、上月记录

查询当天: select * from info where DateDiff(dd,datetime,getdate())=0 查询24小时内: select * from info where DateDiff(hh,datetime,getDate())<=24 查询当天: select * from table where DateDiff(dd,datetime,getdate())=0 本月记录 : SELECT * FROM 表 WHERE datediff(month,[date

mysql 查询当天、本周,本月,上一个月的数据

今天 select * from 表名 where to_days(时间字段名) = to_days(now()); 昨天 SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) <= 1 近7天 SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(时间字段名) 近30天 SELECT * FROM 表名 where DATE_SUB(CURDATE(

MySQL查询今天/本周/上周/本月/上个月份的数据

MySQL查询的方式很多,下面为您介绍的MySQL查询实现的是查询本周.上周.本月.上个月份的数据,如果您对MySQL查询方面感兴趣的话,不妨一看. 查询当前今天的数据 SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) =date_format(now(),'%Y-%m-%d'); 查询当前这周的数据 SELECT name,submittime FROM enter

* 获取本周、本季度、本月、上月的开始日期、结束日期

/** * 获取本周.本季度.本月.上月的开始日期.结束日期 */ var now = new Date();                    //当前日期 var nowDayOfWeek = now.getDay();         //今天本周的第几天 var nowDay = now.getDate();              //当前日 var nowMonth = now.getMonth();           //当前月 var nowYear = now.getY

JS获取本周、本季度、本月、上月的开始日期、结束日期

/** * 获取本周.本季度.本月.上月的开始日期.结束日期 */var now = new Date(); //当前日期 var nowDayOfWeek = now.getDay(); //今天本周的第几天 var nowDay = now.getDate(); //当前日 var nowMonth = now.getMonth(); //当前月 var nowYear = now.getYear(); //当前年 nowYear += (nowYear < 2000) ? 1900 : 0