前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >tp5(thinkPHP5框架)时间查询操作实例分析

tp5(thinkPHP5框架)时间查询操作实例分析

作者头像
砸漏
发布2020-10-21 09:50:13
1K0
发布2020-10-21 09:50:13
举报
文章被收录于专栏:恩蓝脚本恩蓝脚本

本文实例讲述了tp5(thinkPHP5框架)时间查询操作。分享给大家供大家参考,具体如下:

在项目中 可能会遇到 跨月份进行查询

比如在 当输入201809 会获取当月的开始时间start_month 和 结束时间 end_month

会查询2018年9月份的数据 但是当其中的一个数据是在201809到201810 ,数据库的字段是 start_time end_time

这时候

Db::name("表名")- where('start_time','<= time',$end_month)
- where('end_time','  time',$start_month)
- select();

时间比较

使用where方法

where方法支持时间比较,例如:

// 大于某个时间
where('create_time','  time','2016-1-1');
// 小于某个时间
where('create_time','<= time','2016-1-1');
// 时间区间查询
where('create_time','between time',['2015-1-1','2016-1-1']);

使用whereTime方法

whereTime方法提供了日期和时间字段的快捷查询,示例如下:

// 大于某个时间
Db::table('think_user')- whereTime('birthday', ' =', '1970-10-1')- select();
// 小于某个时间
Db::table('think_user')- whereTime('birthday', '<', '2000-10-1')- select();
// 时间区间查询
Db::table('think_user')- whereTime('birthday', 'between', ['1970-10-1', '2000-10-1'])- select();
// 不在某个时间区间
Db::table('think_user')- whereTime('birthday', 'not between', ['1970-10-1', '2000-10-1'])- select();

时间表达式

还提供了更方便的时间表达式查询,例如:

// 获取今天的博客
Db::table('think_blog') - whereTime('create_time', 'today')- select();
// 获取昨天的博客
Db::table('think_blog')- whereTime('create_time', 'yesterday')- select();
// 获取本周的博客
Db::table('think_blog')- whereTime('create_time', 'week')- select();
// 获取上周的博客
Db::table('think_blog')- whereTime('create_time', 'last week')- select();
// 获取本月的博客
Db::table('think_blog')- whereTime('create_time', 'month')- select();
// 获取上月的博客
Db::table('think_blog')- whereTime('create_time', 'last month')- select();
// 获取今年的博客
Db::table('think_blog')- whereTime('create_time', 'year')- select();
// 获取去年的博客
Db::table('think_blog')- whereTime('create_time', 'last year')- select();

如果查询当天、本周、本月和今年的时间,还可以简化为:

// 获取今天的博客
Db::table('think_blog')- whereTime('create_time', 'd')- select();
// 获取本周的博客
Db::table('think_blog')- whereTime('create_time', 'w')- select();
// 获取本月的博客
Db::table('think_blog')- whereTime('create_time', 'm')- select();
// 获取今年的博客
Db::table('think_blog')- whereTime('create_time', 'y') - select();
V5.0.5+版本开始,还可以使用下面的方式进行时间查询
// 查询两个小时内的博客
Db::table('think_blog')- whereTime('create_time','-2 hours')- select();

参考地址:https://www.kancloud.cn/he_he/thinkphp5

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档