tp5(thinkPHP5框架)时间查询操作实例分析
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-24 10:16:07 浏览: 评论:0
这篇文章主要介绍了tp5(thinkPHP5框架)时间查询操作,结合实例形式分析了thinkPHP5框架数据库中日期时间查询相关操作技巧,需要的朋友可以参考下
本文实例讲述了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
Tags: thinkPHP5 tp5时间查询
相关文章
- ·ThinkPHP5.0版本和ThinkPHP3.2版本的区别(2018-11-02)
- ·thinkphp5的get和post数据封装的方法介绍(代码)(2019-12-25)
- ·thinkPHP5运行在nginx上的配置方法详解(2020-03-22)
- ·巧用ThinkPHP5.1和 tufanbarisyildirim 快速解析apk(2020-03-22)
- ·thinkPHP5实现的查询数据库并返回json数据实例(2021-08-15)
- ·thinkPHP5(TP5)实现改写跳转提示页面的方法(2021-08-16)
- ·ThinkPHP5邮件发送服务封装(可发附件)(2021-08-17)
- ·thinkPHP5 ajax提交表单操作实例分析(2021-08-17)
- ·ThinkPHP5联合(关联)查询、多条件查询与聚合查询实例详解(2021-08-17)
- ·ThinkPHP5查询数据及处理结果的方法小结(2021-08-17)
- ·thinkPHP5框架整合plupload实现图片批量上传功能的方法(2021-08-18)
- ·thinkPHP5框架渲染模板的3种方式简述(2021-08-18)
- ·Thinkphp5 微信公众号token验证不成功的原因及解决方法(2021-08-19)
- ·学习thinkphp5.0验证类使用方法(2021-08-19)
- ·thinkphp5.0自定义验证规则使用方法(2021-08-20)
- ·在云虚拟主机部署thinkphp5项目的步骤详解(2021-08-23)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)