如何在 Symfony 2.3 中获取当前语言环境?
我有一个这样的网址:
/{_locale}/blog/article
使用 FR 作为默认参数。我尝试以下方法:
$this->get('request')->getLocale()
但它总是给我默认参数。我知道我可以使用$this->get('session')->set('_locale', 'fr');
但问题是当用户第一次访问我的网站时,他的会话中没有存储任何内容。
您可以通过此获取当前语言环境
$request = $this->get('request');
echo $request->getLocale();
只需$request->getLocale();
在 Symfony 4 中使用,因为当您在 Google 中搜索此主题时,这似乎是顶部链接。
@request_stack
注入RequestStack
.RequestStack
有getCurrentRequest()
获取当前请求的方法。然后你可以getLocale()
用来获取用户当前的语言环境。