Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在 laravel 中指定处理作业任务的确切时间:
$date = "2021-11-09 12:34:00"; $date = Carbon::parse($date)->timestamp; JobsPublishArticle::dispatch()->delay($date);
dd($date) 给出1636461240但在我的工作表中我得到了3272918981;就像它将我的日期添加到由now()
1636461240
3272918981
now()
试试这个:
$date = "2021-11-09 12:34:00"; $carbonDate = Carbon::parse($date); JobsPublishArticle::dispatch()->delay($carbonDate);