我正在使用Laravel。尝试显示日期时出现以下错误:
A textual month could not be found Trailing data
格式为j M Y
,日期为2014-12-13 10:00:00
我不知道错误在哪里。
有什么难事吗?
答案 0 :(得分:2)
供将来参考:使用createFromFormat,第二个参数不是Carbon对象,这给了我同样的错误。使用Carbon::parse::
代替createFromFormat
似乎可以解决问题:
public function setPublishedAtAttribute($date) {
$this->attributes['published_at'] = Carbon::parse($date);
}