本文介绍了如何设置碳的语言?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我想为Carbon设置语言,但是我总是得到相同的结果.
So i want to set language for Carbon, but i always get same result.
Carbon::setLocale('es');
$archive_current_year = Articles::whereBetween('created_at', [
Carbon::now()->startOfYear(),
Carbon::now()->endOfYear(),
])->get()->groupBy(function($item) {
return $item->created_at->format('F');
});
推荐答案
尝试使用PHP函数setlocale
还要检查您的托管服务是否允许并为您提供所需的语言环境.
try using PHP function setlocale
also check if your hosting allows and gives you the locales you want.
setlocale(LC_TIME, 'es_ES');
Carbon::setLocale('es');
$archive_current_year = Articles::whereBetween('created_at', [
....
这篇关于如何设置碳的语言?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!