代码之家  ›  专栏  ›  技术社区  ›  user3732216

向随机生成的日期列表添加时间

  •  0
  • user3732216  · 技术社区  · 6 年前

    下面我将尝试生成一系列符合1990年以来的星期日、星期一和星期四标准的日期。有了这些日期,我想为每个创建的事件添加一个晚上7点的时间。碳纤维包装能做到这一点吗?

    public function run()
    {
        $start = Carbon::parse('First Monday of January 1990');
        $nextMonth = Carbon::now()->addMonth();
    
        collect([
            'monday' => false,
            'thursday' => false,
            'sunday' => true
        ])->flatMap(function ($bool, $day) use ($start, $nextMonth) {
            return $this->dates($start, $nextMonth, $day, $bool);
        })->sort(function ($a, $b) {
            return strtotime($a) - strtotime($b);
        })->values()->map(function ($date, $key) {
            return factory(Event::class)->create([
                'name' => 'Event '.($key + 1),
                'slug' => 'event'.($key + 1),
                'venue_id' => Venue::inRandomOrder()->first()->id,
                'date' => $date
            ]);
        })->filter(function ($event) {
            return $event->date->lte(Carbon::today()->addWeeks(2));
        });
    }
    
    protected function dates(Carbon $from, Carbon $to, $day, $last = false)
    {
        $step = $from->copy()->startOfMonth();
        $modification = sprintf($last ? 'last %s of next month' : 'next %s', $day);
    
        $dates = [];
        while ($step->modify($modification)->lte($to)) {
            $dates[$step->timestamp] = $step->copy();
        }
    
        return $dates;
    }
    
    1 回复  |  直到 6 年前
        1
  •  1
  •   Peter    6 年前

    要添加晚上7点的时间,可以使用碳设定器方法 $date->hour = 19 . 见 http://carbon.nesbot.com/docs/#api-setters