2021-07-23T05:56:03.000000Z

问题:

"created_at": "2021-03-10T20:29:26.000000Z"
我们需要的年月日时分秒,解决办法如下

将以下代码放入对应的Model中

引入

use DateTimeInterface;
方法

protected function serializeDate(DateTimeInterface $date)
{
return $date->format('Y-m-d H:i:s');
}

————————————————

原文链接:https://blog.csdn.net/qq2942713658/article/details/114806087

相关文章:

  • 2021-12-18
  • 2021-11-25
  • 2022-01-06
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-11
  • 2021-12-22
  • 2022-12-23
  • 2021-12-18
  • 2022-12-23
相关资源
相似解决方案