在Carbon中,我可以做到
Carbon::parse("This Sunday"); // This gives me coming date for Sunday
但我希望像get coming date of Sunday after 2018-01-01
那样获得一天的约会。是否有可能实现这样的目标?
答案 0 :(得分:1)
答案 1 :(得分:1)
答案 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();