我有以下
"end_time" represents datetime in unix format
$vouchers = DB::table('deals_sales')
->whereIn('status', [0, 1])
->where('end_time', '>=', strtotime("+5 day"))
->get();
我想要实现的是获得将在现在和未来 5 天之间结束的所有结果,但是通过我的查询,我什至得到了那些将在 10 天内到期的结果。
我只是看不到如何获得它的逻辑。
有任何想法吗?
谢谢