ThinkPHP5 查询本年、本月、本周的方法
ThinkPHP5 查询本年、本月、本周的方法
tp5自带了一些查询的方法
实际用法如下:
->whereTime('时间字段','year')//查询本年 ->whereTime('时间字段','month')//查询本月 ->whereTime('时间字段','week')//查询本周 //去年,上个月以及上周 ->whereTime('时间字段','last year')//查询去年 ->whereTime('时间字段','last month')//查询上个月月 ->whereTime('时间字段','last week')//查询上周 //特定的时间内查询 ->whereTime('时间字段','between',['2017-1-1','2017-1-10'])
本文属原创,转载请注明原文:https://www.zhimatong.com/jiaocheng/979.html
为保证教程的实用性及扩大知识面覆盖,如果您有相似问题而未解决,可联系在线客服免费技术支持。
内容有用