从Carbon到来的日期和指定日期获取日期?

时间:2017-12-05 11:10:50

标签: php laravel php-carbon

在Carbon中,我可以做到

Carbon::parse("This Sunday"); // This gives me coming date for Sunday

但我希望像get coming date of Sunday after 2018-01-01那样获得一天的约会。是否有可能实现这样的目标?

4 个答案:

答案 0 :(得分:1)

你可以做到

$sunday = Carbon::parse("This Sunday");
$sunday->next(Carbon::SUNDAY);

Docs

答案 1 :(得分:1)

是的,你可以写这样的东西。

Carbon::parse('first sunday of January 2018')

文档在http://carbon.nesbot.com/docs/

答案 2 :(得分:1)

您只需使用

即可实现此目的
f.SetBounds(this.Location.X, this.Location.Y,this.Width, this.Height);

或使用next()可能更快

Carbon::parse("2018-01-01")->modify("next Sunday");

答案 3 :(得分:1)

您可能会执行以下操作: 如官方documentation

中所述
$sunday = Carbon::parse("This Sunday"); //you are able to retrieve this currently

$nextSunday = $sunday->addWeek();