美文网首页
thinkphp v5 时间查询

thinkphp v5 时间查询

作者: 呦丶耍脾气 | 来源:发表于2017-09-21 14:06 被阅读281次

时间比较

1. 使用where方法

支持timestamps、datetime、date和int时间类型(根据数据库字段设置的类型)

where('create_time','> time','2017/9/20 9:36:2','int')//==>WHERE `create_time` > 1505871362"
// 时间区间查询
where('create_time','between time',['2015-1-1','2016-1-1']);
2. whereTime

whereTime方法提供了日期和时间字段的快捷查询

//===>"SELECT * FROM `cms_user` WHERE `create_time` > 1505871362"
Db::table('cms_user')->whereTime('create_time','>','2017/9/20 9:36:2','int')->select();
// 时间区间查询
Db::table('cms_user')->whereTime('birthday', 'between', ['1970-10-1', '2000-10-1'])->select();
3. 时间表达式
// 获取今天的博客
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();

相关文章

网友评论

      本文标题:thinkphp v5 时间查询

      本文链接:https://www.haomeiwen.com/subject/kobzsxtx.html