tp5 查询本年、本月、本周的方法

tp5自带了一些查询的方法,查询本年、本月以及本周的方法

whereTime()//此方法代替了between and 方法

实际用法如下:

->whereTime('时间字段','year')//查询本年
->whereTime('时间字段','month')//查询本月
->whereTime('时间字段','week')//查询本周

查询去年,上个月以及上周的该怎么查呢?往下看:

->whereTime('时间字段','last year')//查询去年
->whereTime('时间字段','last month')//查询上个月月
->whereTime('时间字段','last week')//查询上周

如果想在特定的时间内查询呢?往下看:

->whereTime('时间字段','between',['2024-1-1','2024-9-10'])
- THE END -
版权声明:
转载原创文章请注明,文章出处://kinggoo.com
原文地址:https://kinggoo.com/tp5-db-wheretime.htm
发表评论?

0 条评论。

发表评论


此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据