标签: php laravel date datetime laravel-5.6
我正在尝试更改月份名称和我编写的代码
Carbon::setLocale( 'pt_BR' ); $datetime = new Carbon('2016-01-23 11:53:20'); $datetime->format('d/M/Y');
它应该根据选定的本地返回月份名称
但是我不能得到这样的日期
23/Jan/2016
仅在使用diffForHumans时有效
有什么方法可以基于setLocale更改月份名称吗?