【发布时间】:2013-10-20 23:19:46
【问题描述】:
如何在 Symfony 2.3 中更改语言环境?
我创建了这个控制器:
public function changelocaleAction($lang)
{
$request = $this->get('request');
$request->setLocale($lang);
return $this->redirect($request->headers->get('referer'));
}
刷新页面时不会显示更改。为什么?
【问题讨论】:
标签: symfony symfony-2.3