|
|
- // 获取今天的博客
- 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();
复制代码
|
|