小编给大家分享一下PHP如何查询本年的数据,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!php查询本年的数据的方法:1、通过date获取本年时间;2、运行查询语句“$result = $db->where(
小编给大家分享一下PHP如何查询本年的数据,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
php查询本年的数据的方法:1、通过date获取本年时间;2、运行查询语句“$result = $db->where($where)->select();”即可。
本文操作环境:windows7系统、thinkphp v5.1版、Dell G3电脑。
thinkphp查询当天,本周的,本月的,本年的数据
代码如:
//当天时间$where['time'] = array( array('egt',strtotime(date('Y-m-d',time())), array('lt',strtotime(date('Y-m-d',time())).'+1 day'));// 本周时间$where['time'] = array( array('egt',strtotime(date('Y-m-d',time())).'-'.date('w',time()).' day'), array('lt',strtotime(date('Y-m-d',time())).'+1 week -'.date('w',time()).' day'););// 本月时间$where['time'] = array( array('egt',strtotime(date('Y-m',time()))), array('lt',strtotime(date('Y-m',time()).'+1 month')));// 本年时间$where['time'] = array( array('egt',strtotime(date('Y',time()))), array('lt',strtotime(date('Y',time()).'+1 year')));
上面是查询条件,直接运用到查询语句就可以了
$result = $db->where($where)->select();
更正下上面的那个 本年 查询时间
$where['time'] = array( array('egt',strtotime(date('Y-01-01',time())), array('lt',strtotime(date('Y-01-01',time()).'+1 year')));
修复版
//昨天时间 $yesterday['addtime'] = array(array('egt',strtotime(date('Y-m-d',time()).' -1 day')),array('lt',strtotime(date('Y-m-d',time()))));//当天时间$day['addtime'] = array(array('egt',strtotime(date('Y-m-d',time()))),array('lt',strtotime(date('Y-m-d',time()).' +1 day')));// 本月时间$month['addtime'] = array(array('egt',strtotime(date('Y-m',time()))),array('lt',strtotime(date('Y-m',time()).' +1 month')));// 本周时间$week['addtime'] = array(array('egt',strtotime(date('Y-m-d',time()).'-'.date('w',time()).' day')),array('lt',strtotime(date('Y-m-d',time()).'+1 week -'.date('w',time()).' day')));
看完了这篇文章,相信你对“php如何查询本年的数据”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网PHP编程频道,感谢各位的阅读!
--结束END--
本文标题: php如何查询本年的数据
本文链接: https://lsjlt.com/news/302248.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0