我如何更改 Carbon 认为周末的日子?

How can I change what days Carbon considers the weekend?

我想将 weekendDays 更改为仅在我的 Carbon 实例中包含 星期日。我该怎么做?

运行:

Carbon::setWeekendDays([Carbon::SUNDAY]);

在你的App\Providers\AppServiceProvider中启动函数。

编辑:

setWeekendDays 已弃用。请改用宏。

Carbon::macro('isDayOff', function ($date) {
   return $date->isSunday();
});

$isDayOff = $carbon_inst->isDayOff(): bool;