gpt4 book ai didi

php - 如何在今天内打字 From 00 :00:00 to 23:59:59 in Laravel

转载 作者:行者123 更新时间:2023-12-05 09:12:55 26 4
gpt4 key购买 nike

如何在 Laravel 中添加“在今天之内”(即从 00:00:00 到 23:59:59)?

$grpcnt = DB::table('groups') 
->where('owner_id', $u_id)
->whereBetween('created_at', xxx,xxx)
->count();

最佳答案

如果你想得到今天组的计数,那么你可以这样使用。

DB::table('groups')->where('owner_id', $u_id)
->whereDate('created_at', Carbon::today())
->count();

或者根据您的要求

$start = Carbon::now()->startOfDay();  //2019-07-27 00:00:00.000000
$end = Carbon::now()->endOfDay(); //2019-07-27 23:59:59.000000


DB::table('groups')->where('owner_id', $u_id)
->whereBetween('created_at', [$start, $end])->count();

关于php - 如何在今天内打字 From 00 :00:00 to 23:59:59 in Laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57231666/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com