如何使用 Carbon 将日期 (2020-11-23T13:26:02.000Z) 格式化为 laravel 中的 Y-m-d h:i:s?

How to format Date (2020-11-23T13:26:02.000Z) to Y-m-d h:i:s in laravel using Carbon?

我有这样的日期数据 2020-11-23T13:26:02.000Z我想在 Laravel

中使用 Carbon 转换格式 Y-m-d h:i:s = 2020-11-23 13:26:02

你好
你可以这样做,然后以“Y-m-d h:i:s”格式获取日期

$date = new Carbon("2020-01-29T00:30:01.000Z");
/*
Carbon::__set_state(array(
   'date' => "2020-01-29 00:30:01",
   'timezone_type' => 2,
   'timezone' => "Z",
))
*/

使用Carbon::parse:

$date = Carbon::parse('2020-11-23T13:26:02.000Z')->toDateTimeString();

dd($date); // 2020-11-23 13:26:02