我在PHP中使用DateTime::createFromFormat
,如下所示:
$month = DateTime::createFromFormat("Y-m-d", '2014-08-01');
但echo $month
显示为08.如何将其显示为3个字母的名称,即:Aug?
答案 0 :(得分:-1)
使用大写M而不是m。
$getMonth = DateTime::createFromFormat("Y-m-d", '2014-08-01');
如果您已经创建了日期变量,那么您可以直接使用以下代码
$month = $getMonth->format('M');