格式化碳日期实例

Formatting a Carbon date instance(格式化碳日期实例)
本文介绍了格式化碳日期实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个返回以下日期时间的数组:

I have an array that returns the following date time:

$item['created_at'] => "2015-10-28 19:18:44"

如何使用 Carbon 在 Laravel 中将日期更改为 M d Y 格式?

How do I change the date to M d Y format in Laravel using Carbon?

目前它返回一个错误

$suborder['payment_date'] = $item['created_at']->format('M d Y');

推荐答案

首先将 created_at 字段解析为 Carbon 对象.

First parse the created_at field as Carbon object.

$createdAt = Carbon::parse($item['created_at']);

然后你就可以使用

$suborder['payment_date'] = $createdAt->format('M d Y');

这篇关于格式化碳日期实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

In PHP how can you clear a WSDL cache?(在 PHP 中如何清除 WSDL 缓存?)
failed to open stream: HTTP wrapper does not support writeable connections(无法打开流:HTTP 包装器不支持可写连接)
Stop caching for PHP 5.5.3 in MAMP(在 MAMP 中停止缓存 PHP 5.5.3)
Caching HTTP responses when they are dynamically created by PHP(缓存由 PHP 动态创建的 HTTP 响应)
Memcached vs APC which one should I choose?(Memcached 与 APC 我应该选择哪一个?)
What is causing quot;Unable to allocate memory for poolquot; in PHP?(是什么导致“无法为池分配内存?在 PHP 中?)