1

我有一个要播种的数据透视表。除了 PK 和 FK,该表还包含另外两列:Arrival & Departure(类型:时间戳)。我正在使用 Carbon 随机填充前面的列。这是我的代码:

$faker = Faker::create();
for( $i=0 ; $i<55500 ; $i++){
   $nowDt = Carbon::now();
   $nowDt->timezone = 'Europe/London';
   $nowDt->addMinutes($faker->numberBetween(25,55));
   $this->command->info("ARRIVAL : ". $nowDt);
   $departure = $nowDt->addMinutes($faker->numberBetween(35,45));
   $this->command->info("DEPARTURE : ". $departure);
   $region->entities()->attach($random_entity,[
            'arrival'       => $nowDt,
            'departure'     => $departure,
            'created_at'    => Carbon::now(),
            'updated_at'    => Carbon::now()
        ]);
   }

奇怪的是,输出到控制台的消息如下:

ARRIVAL : 2015-06-11 08:24:29
DEPARTURE : 2015-06-11 09:13:29

但是当我查看插入的数据时,到达和离开的值完全相同。

ARRIVAL : 2015-06-11 08:24:29
DEPARTURE : 2015-06-11 08:24:29

我在这里做错了什么?

4

1 回答 1

0

这是因为您正在操作相同的日期对象。如果您需要操作日期并作为新对象返回,则copy在操作之前保留当前对象使用方法。否则它将返回对您正在操作的同一对象的引用。

更改此行

$nowDt->addMinutes($faker->numberBetween(35,45));

$nowDt->copy()->addMinutes($faker->numberBetween(35,45));
于 2015-06-11T08:40:10.663 回答