tp5自带了一些查询的方法,查询本年、本月以及本周的方法
whereTime()//此方法代替了between and 方法
实际用法如下:
->whereTime(‘时间字段’,’year’)//查询本年
->whereTime(‘时间字段’,’month’)//查询本月
->whereTime(‘时间字段’,’week’)//查询本周
查询去年,上个月以及上周的该怎么查呢?往下看:
->whereTime(‘时间字段’,’last year’)//查询去年
->whereTime(‘时间字段’,’last month’)//查询上个月月
->whereTime(‘[……]
最新评语