如何格式化PHP日期以表示前3个字母的月份?

时间:2016-05-30 08:09:32

标签: php date-formatting

我有一个PHP代码,它将显示日期格式

npm update -g firebase-tools

它将输出类似“2016年9月2日”的内容,如何将此日期格式化为“2016年9月2日”?

1 个答案:

答案 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))