Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用带有键的配置集通过网络动态设置后备语言环境app.fallback_locale。但它没有用。
app.fallback_locale
config()->set('app.fallback_locale', 'ms')
有什么我想念的吗?
尝试这个:
设置fallback_locale在app.php,
fallback_locale
app.php
'fallback_locale' => 'ms',
在访问之前尝试清除配置缓存
php artisan config:clear
您可以尝试使用php artisan tinker并运行
php artisan tinker
config('app.locale'); OR App::getLocale()
希望这适用于您的情况!