我有一个PHP代码,它将显示日期格式
npm update -g firebase-tools
它将输出类似“2016年9月2日”的内容,如何将此日期格式化为“2016年9月2日”?
答案 0 :(得分:0)
它是M d, Y
。我建议您在模型中添加due_date
到$dates
属性:
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = [
'due_date',
];
然后您可以显示$po->due_date->format('M d, Y')
而不是date('M d, Y', strtotime($po->due_date))