DateTime :: createFromFormat月份名称

时间:2014-10-22 05:31:59

标签: php datetime

我在PHP中使用DateTime::createFromFormat,如下所示:

$month = DateTime::createFromFormat("Y-m-d", '2014-08-01');

echo $month显示为08.如何将其显示为3个字母的名称,即:Aug?

1 个答案:

答案 0 :(得分:-1)

使用大写M而不是m。

  $getMonth = DateTime::createFromFormat("Y-m-d", '2014-08-01');

如果您已经创建了日期变量,那么您可以直接使用以下代码

 $month = $getMonth->format('M');